350-701 · Question #501
What is the concept of continuous integration/continuous delivery pipelining?
The correct answer is A. The project code is centrally maintained, and each code change should trigger an automated. CI/CD pipelining integrates code changes frequently into a central repository, triggering automated builds, tests, and deployments for continuous software delivery.
Question
What is the concept of continuous integration/continuous delivery pipelining?
Options
- AThe project code is centrally maintained, and each code change should trigger an automated
- BThe project is split into time-limited cycles, and focuses on pair programming for continuous
- CThe project is split into several phases where one phase cannot start before the previous
- DEach project phase is independent from other phases to maintain adaptiveness and continual
How the community answered
(30 responses)- A90% (27)
- C7% (2)
- D3% (1)
Why each option
CI/CD pipelining integrates code changes frequently into a central repository, triggering automated builds, tests, and deployments for continuous software delivery.
Continuous Integration (CI) emphasizes developers merging code changes frequently to a central repository, with each merge triggering an automated build and test process. Continuous Delivery (CD) extends this by automatically preparing validated code for release, often deploying it to a staging or production environment, thus forming a continuous pipeline.
This describes aspects of Agile methodologies, particularly Scrum, which involve time-limited sprints and practices like pair programming, but it does not define CI/CD pipelining.
This describes a traditional waterfall development model, where phases are sequential and strictly dependent, which is antithetical to the iterative nature of CI/CD.
While CI/CD aims for adaptiveness, stating phases are completely independent is inaccurate; instead, they are integrated and automated to flow continuously from development to deployment.
Concept tested: Continuous Integration/Continuous Delivery (CI/CD) principles
Source: https://learn.microsoft.com/en-us/devops/deliver/what-is-cicd
Topics
Community Discussion
No community discussion yet for this question.