Exam Preparation Quiz

Question 75 of 75

Configure Azure Pipelines Stages and Dependencies

You work for MDFT Pro, a well-known training agency. As a DevOps engineer, you are tasked with configuring an Azure Pipelines pipeline for the academy’s new educational application and its associated database.

Your pipeline must satisfy the following technical requirements:

You have proposed the following YAML configuration for the pipeline:

stages:
- stage: Build_App
  jobs: ...
- stage: Test_App
  dependsOn: [Build_App]
  jobs: ...
- stage: Test_Database
  dependsOn: [Build_App]
  jobs: ...
- stage: Publish_Test_Results
  jobs: ...

Does this configuration meet all the stated requirements?

Choose the correct answer from the options below.

Explanations for each answer:

Learn more about Azure Pipelines stages and dependencies:
Stages and Dependencies
Show Results