Which of the following statements describes the principal concept behind test driven development?
Show answer and explanation
Correct answer: C
https://en.wikipedia.org/wiki/Test-driven_development
701-100 Real Exam Questions
120 questions available · Page 1 of 12
Updated Exam DumpsVerified AnswersPass Guarantee
Which of the following statements describes the principal concept behind test driven development?
Correct answer: C
https://en.wikipedia.org/wiki/Test-driven_development
FILL BLANK
Which docker subcommand starts a new container? (Specify only the subcommand without any path or parameters.)
Accepted answer: run
Given the following Kubernetes deployment:
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
myapp 2 2 2 0 17s
Which command scales the application to five containers?
Correct answer: C
Using the Ansible cron module a crontab entry should be created for example.sh which runs once after reboot.
Which of the following is a calid Ansible task for this purpose?
Correct answer: C
What happens if a grok filter in Logstash processes a log message which dose not match the pattern in the filter's match property?
Correct answer: 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?
Correct answer: C
https://git-scm.com/docs/git-revert
Which of the following sections must exist in a Packer template?
Correct answer: C
Which of the following statements are true about an object storage system as OpenStack Swift? (Choose
TWO correct answers)
Correct answers: B, D
If a Dockerfile contains the following lines:
Run cd /tmp
Run echo test > test
Where is the file test located?
Correct answer: D
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?
Correct answer: C