AZ-400 • Timed Practice Test 4
This is a timed practice session. You have 10 minutes to answer 10 questions — approximately 1 minute per question, matching real AZ-400 exam pace. Answer every question before time expires.
Time remaining
10:00
Exam-pace drill
Allow 1 minute per question. On the real AZ-400 exam you have approximately 72 seconds per question — this session trains you to maintain that pace under pressure.
You are reviewing an Azure Policy definition applied to an Azure DevOps project. The project has a build pipeline that deploys to production. What is the effect of this policy on the build pipeline?
Refer to the exhibit.
```json
{
"properties": {
"description": "Policy to require multiple reviewers for critical repos",
"policyType": "Build",
"mode": "Validation",
"initiative": "RequireMinimumReviewers",
"policyRule": {
"if": {
"field": "type",
"equals": "Microsoft.TeamFoundation/teamProjects"
},
"then": {
"effect": "audit",
"details": {
"minimumApproverCount": 2
}
}
}
}
}
```