Which of the following information is contained in the output of git status? (Choose three correct answers.)
Answer : C, D, E
Which of the following statements are true about Jenkins? (Choose two correct answers.)
Answer : B, E
The file index.php, which is being maintained in a git repository, was changed locally and contains an error. If the error has not been committed to the repository yet, which of the following git commands reverts the local copy of index.php to the latest committed version in the current branch?
Answer : B
Reference https://git-scm.com/docs/git-revert
Given the following excerpt of a Dockerfile:
Run apt-get --y update && apt-get install --y fortunes && apt-get clean
Why are the multiple apt-get commands combined in one RUN statement instead of using multiple RUN statements?
Answer : D
Which Ansible command is used to manage and store sensitive data in encrypted files? (Specify ONLY the command without any path or parameters.)
See Below Explanation:
Answer : A
Which of the following functions are provided by the Ansible apt module? (Choose two correct answers.)
Answer : B, E
Reference https://docs.ansible.com/ansible/latest/modules/apt_module.html
Which of the following HTTP methods are used by REST? (Choose three correct answers.)
Answer : C, D, E
Reference https://restfulapi.net/http-methods/