Hello friends, in this post we are going to discuss about Ansible – Automation Sibelius Multiple choice question | Ansible – Automation Sibelius Fresco Play answer Dumps | Ansible – Automation Sibelius TCS Fresco Play Dumps | Ansible – Automation Sibelius Objective type question
Q.1 | Ansible can deploy to virtualization and cloud environments, Including | All the Options |
Q.2 | Ansible acquired by | Red Hat |
Q.3 | Which of the following is a valid YAML syntax? | path: F:\test |
Q.4 | Ansible is | All the options mentioned |
Q.5 | Which configuration management software is Agentless? | Ansible |
Q.6 | YAML uses tabs for indentation, True or false? | FALSE |
Q.7 | Design goals of Ansible include | All the options mentioned |
Q.8 | If you do not need any facts from the host, what command would you use? | both gather_facts: no or gather_facts: False |
Q.9 | Which module can be used to copy files from remote machine to control machine? | Fetch |
Q.10 | Where is Inventory file located by default? | /etc/ansible/hosts |
Q.11 | Which command tells ansible to run the playbook on all the hosts except host1? | ansible-playbook playbooks/PLAYBOOK_NAME.yml –limit ‘all:!host1’ |
Q.12 | Which one is not a valid value of state argument of “file” module? | folder |
Q.13 | Which Ansible module is used to manage docker services and containers. | docker_service |
Q.14 | You write comments in Jinja2 as: | {# #} |
Q.15 | Handler run only once even if you run the playbook multiple times. | TRUE |
Q.16 | Ansible modules will apply changes everytime you run Playbook. | FALSE |
Q.17 | Modules are temporarily stored in the nodes and communicate with the control machine through a ______ protocol over the standard output. | JSON |
Q.18 | Which module copies dynamically generated file from control machine to target hosts? | template |
Q.19 | Which module can be used to force a handler to run in between two tasks? | meta |
Q.20 | What module can be used to stop a playbook execution for some time? | pause |
Q.21 | Which module will you use to create a directory? | file |
Q.22 | Identify the order of execution of handlers in the below snippet. | test-test1-handler_2-handler_3-handler_1 |
Q.23 | Which command do you use to do a syntax check on your playbook? | ansible-playbook <playbook_name> –syntax-check |
Q.24 | Using which module can you see the list of all the ansible variables? | setup |
Q.25 | A Playbook starts with three dots … | FALSE |
Q.26 | Which module you can use to install Apache in Ubuntu OS? | apt |
Q.27 | What is the output statement of the following snippet? | syntax error because of conflicting action statements |
Q.28 | Which of these will loop through items randomly? | with_random_choice |
Q.29 | You cannot define multiple conditions | FALSE |
Q.30 | ansible.cfg should be present in | /etc/ansible |
Q.31 | what is the default forks value in configuration file? | 5 |
Q.32 | How can you reduce the number of SSH connections required? | pipelining |
Q.33 | How to define the number of parallel processes while communicating to remote hosts? | Forks |
Q.34 | You can activate your privilege escalations using which settings? | become=true |
Q.35 | To store sensitive information you can use ansible-vaulte. | TRUE |
Q.36 | Ansible can work as a push automated deployment system and as well as a pull automated deployment system? | TRUE |
Q.37 | Design goals of Ansible include | All the options mentioned |