What's the difference between authentication and authorization?
Answer : D
Authorization and authentication are different but related concepts. They don't vary or indicate a level of strictness.
Which answer best describes continuous integration?
Answer : D
Continuous integration doesn't mean that software can or will be released or pushed to production continuously.
You want to deploy a Jenkins pipeline, but you are concerned about the total amount of time it will take for the deployment to complete, and you aren't concerned with files left in the working directory after a build. What should you do?
Answer : B
You can save time by not choosing to have a clean checkout for each build
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.
What's a benefit of a clean checkout over an incremental update?
Answer : A
A user, or previous build, could create or change a file in a workspace which could cause problems with future builds.
Your company's DevOps staff is new to the continuous integration methodology. Some users are unclear on best practices, and you're hearing all kinds of feedback from them, some of it wrong. Which of the following statements is NOT a CI best practice?
Answer : C
CI relies heavily on automation, especially build automation, to enable the sped-up pace of code commits. If things are built manually, the pipeline is slowed down, and the ability to maintain a fast change pace is inhibited.
What is a code coverage test?
Answer : D