Which answer best describes continuous deployment?
Answer : D
Continuous deployment is an extension of continuous integration and continuous delivery. It's important to know the difference. Deployment indicated that the code is continuously deployed to production.
What best describes DevOps?
Answer : C
DevOps is a cultural movement that helps facilitate continuous integration concepts by bringing Dev and Ops into harmony, where they may have been separate previously.
Where is the initialAdminPassword stored on the system?
Answer : B
The initialAdminPassword file, referenced in the Install Wizard, is stored in /var/lib/jenkins/secrets/.
What's a benefit of incremental updates over a clean checkout?
Answer : C
Instead of deleting and re-cloning a project repository into a workspace, you can save time by just pulling any changes. This can be problematic when files produced during the build may persist and cause issues in future builds.
How can you easily see if a plugin you use needs to be upgraded to a new version?
Answer : D
A Freestyle job is configured to execute concurrent builds, and to only build on a specific agent (agent A) that has 4 executors. You observe that 2 Instances of the job are currently building while several others are waiting in the build queue. Which of the following could explain why the builds are waiting in the build queue?
Answer : A
Your supervisor has asked you to explain to the company's development team how using Jenkins will implement continuous integration. You want to make sure the developers understand what that means to them. Which of the following is the most succinct ?
Answer : B
A central tenant of continuous integration is integrating work frequently.