XK0-004 · Question #448
Whenever an administrator merges the feature branch into master, a binary is created and saved in the artifact repository. Which of the following does this desenbe?
The correct answer is A. Build automation. Automatically compiling source code into a binary and storing it in an artifact repository upon a branch merge is the definition of build automation.
Question
Whenever an administrator merges the feature branch into master, a binary is created and saved in the artifact repository. Which of the following does this desenbe?
Options
- ABuild automation
- BInfrastructure as code
- CAgentiess architecture
- DInventory
How the community answered
(28 responses)- A93% (26)
- B4% (1)
- D4% (1)
Why each option
Automatically compiling source code into a binary and storing it in an artifact repository upon a branch merge is the definition of build automation.
Build automation is the practice of using tooling to automatically trigger a build pipeline when a version control event occurs, such as merging a feature branch into master. The pipeline compiles source code into a binary artifact and deposits it in an artifact repository, eliminating manual build steps and ensuring consistent output.
Infrastructure as code refers to defining and provisioning infrastructure through version-controlled configuration files, not to compiling application source code into binaries.
Agentless architecture describes a management or monitoring model that requires no agent software installed on target nodes, which is unrelated to automated build pipelines.
Inventory in IT refers to the cataloging and tracking of hardware or software assets across an environment, not to the automated creation of build artifacts.
Concept tested: CI/CD build automation triggered by branch merge
Source: https://learn.microsoft.com/en-us/azure/devops/pipelines/get-started/what-is-azure-pipelines
Topics
Community Discussion
No community discussion yet for this question.