Which TWO of the following are true about multi-stage pipelines in Azure Pipelines?
Using dependsOn with none.
Why this answer
Multi-stage pipelines are defined in YAML and can include multiple sequential or parallel stages. Option A is correct because YAML is the primary definition. Option C is correct because stages can be parallelized using dependsOn.
Option B is incorrect because stages can run across multiple agents. Option D is incorrect because stages are not limited to one job. Option E is incorrect because stages can have conditions.