Question 6 of 92
Is it possible to specify multiple inventory files at once?
    Correct Answer: A

Question 7 of 92
What keyword stores a command's output into a variable?
    Correct Answer: A

Question 8 of 92
What does the lineinfile module do?
    Correct Answer: A

Question 9 of 92
Consider the following playbook.
---
- hosts: local
become: yes

tasks:
- name: create users
user: name: "{{item}}" with_items:
- sam
- john
- bob
How many times is the user module invoked?
    Correct Answer: B

Question 10 of 92
What command is used to run a playbook?
    Correct Answer: A