Questions for the 701-100 were updated on : Nov 14 ,2024
CORRECT TEXT
Which git sub command copies a local commit to a remote repository? (Specify ONLY the sub
command without any path or parameters.)
clone
Which of the following statements regarding microservices are true? (Choose three correct answers.)
C,D,E
Which statements are true regarding databases during the deployment of a new release of a service
using canary deployment? (Choose two correct answers.)
B,E
A declarative Jenkins pipeline contains the following excerpt:
parameters {
string (name: TargetEnvironment, defaultValue: staging, description: Target environment)
}
How can a task use the value provided for TargetEnvironment?
B
Which of the following HTTP headers is a CORS header?
A. X-CORS-Access-Token:
B. Location:
C. Referer:
D. Authorization:
E. Access-Control-Allow-Origin
E
Reference
//enable-cors.org/server_apache.html
Which of the following git commands is used to manage files in a repository? (Choose two correct
answers.)
A,C
What implications does container virtualization have for DevOps? (Choose two answers.)
A. Containers decouple the packaging of an application from its infrastructure.
B. Containers require developers to have detailed knowledge of their IT infrastructure.
C. Containers let developers test their software under production conditions.
D. Containers complicate the deployment of software and require early deployment tests.
E. Containers require application specific adjustment to the container platform.
A,C
Reference
//anandmanisankar.com/posts/container-docker-PaaS-microservices/
Which of the following HTTP methods are used by REST? (Choose three correct answers.)
A. CREATE
B. REPLACE
C. PUT
D. DELETE
E. GET
C,D,E
Reference
//restfulapi.net/http-methods/
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?
A. git lastver index.php
B. git revert index.php
C. git checkout index.php
D. git clean index.php
E. git repair index.php
B
Reference
//git-scm.com/docs/git-revert
Which of the following statements are true about Jenkins? (Choose two correct answers.)
B,E
Which of the following information is contained in the output of git status? (Choose three correct
answers.)
C,D,E
What happens when a merge conflict occurs in git? (Choose two correct answers.)
D,E
Which configuration option in the Ansible inventory is issued control privilege escalation of the
remote user?
A. priv_user
B. elevate
C. super
D. become
E. sudo
D
Reference
//docs.ansible.com/ansible/2.6/user_guide/become.html
Which Ansible modules can be used to change the contents of a file? (Choose three correct answers.)
A,B,C
What is the Puppet equivalent to an Ansible Playbook called?
A