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: