AZ-104 Manage Azure Identities and Governance Practice Question
This AZ-104 practice question tests your understanding of manage azure identities and governance. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Tenant: Contoso
Subscription: Prod-Sub
Resource groups:
- RG-App
- RG-Data
- RG-Net
Requirement:
- Helpdesk contractors must start and stop all VMs only in RG-App.
- They must not see or manage resources in the other resource groups.
Based on the exhibit, where should the administrator assign the role so the contractor can start and stop virtual machines only in RG-App and nothing else?
Exhibit
Tenant: Contoso
Subscription: Prod-Sub
Resource groups:
- RG-App
- RG-Data
- RG-Net
Requirement:
- Helpdesk contractors must start and stop all VMs only in RG-App.
- They must not see or manage resources in the other resource groups.
A
Assign the role at the subscription scope so it covers the contractor's work area.
Why wrong: This would give the contractor access to every resource group in the subscription, which is broader than required.
B
Assign the role at the resource group scope for RG-App.
This is the narrowest scope that still reaches all virtual machines inside RG-App. RBAC permissions assigned at the resource group level apply only to resources in that group, which fits the requirement to manage VMs there without affecting RG-Data or RG-Net.
C
Assign the role at the management group scope above the subscription.
Why wrong: A management group scope is even broader than a subscription and would extend access to more subscriptions than needed.
D
Assign the role directly to one virtual machine only, because that is always the best scope.
Why wrong: That would restrict access to a single VM, not all VMs in RG-App, so it does not satisfy the requirement.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Assign the role at the resource group scope for RG-App.
The contractor needs to manage virtual machines only within RG-App. Azure RBAC allows you to assign the Virtual Machine Contributor role at the resource group scope, which grants permissions to start and stop VMs within that specific resource group while preventing access to resources in other resource groups or at higher scopes. Assigning at the subscription or management group level would grant permissions across all resource groups, violating the principle of least privilege.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✗
Assign the role at the subscription scope so it covers the contractor's work area.
Why it's wrong here
This would give the contractor access to every resource group in the subscription, which is broader than required.
When this WOULD be correct
If the contractor needed to start and stop VMs across multiple resource groups within the same subscription, assigning the role at the subscription scope would be appropriate.
✓
Assign the role at the resource group scope for RG-App.
Why this is correct
This is the narrowest scope that still reaches all virtual machines inside RG-App. RBAC permissions assigned at the resource group level apply only to resources in that group, which fits the requirement to manage VMs there without affecting RG-Data or RG-Net.
Related concept
Read the scenario before looking for a memorised answer.
✗
Assign the role at the management group scope above the subscription.
Why it's wrong here
A management group scope is even broader than a subscription and would extend access to more subscriptions than needed.
When this WOULD be correct
If the question required the contractor to manage VMs across multiple subscriptions that all belong to the same management group, and the role assignment should cover all those subscriptions, then assigning at the management group scope would be correct.
✗
Assign the role directly to one virtual machine only, because that is always the best scope.
Why it's wrong here
That would restrict access to a single VM, not all VMs in RG-App, so it does not satisfy the requirement.
When this WOULD be correct
If the question required granting permissions to start and stop only one specific VM (e.g., a critical server) and no other resources, assigning the role at the VM scope would be correct.
Option-by-option analysis
Why each answer is right or wrong
Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The AZ-104 exam frequently reuses these exact scenarios with slightly different constraints.
✓Assign the role at the resource group scope for RG-App.Correct answer▾
Why this is correct
This is the narrowest scope that still reaches all virtual machines inside RG-App. RBAC permissions assigned at the resource group level apply only to resources in that group, which fits the requirement to manage VMs there without affecting RG-Data or RG-Net.
✗Assign the role at the subscription scope so it covers the contractor's work area.Wrong answer — click to see why▾
Why this is wrong here
Assigning at subscription scope grants permissions to all resource groups in the subscription, not just RG-App, violating the requirement to limit access to RG-App only.
★ When this WOULD be the correct answer
If the contractor needed to start and stop VMs across multiple resource groups within the same subscription, assigning the role at the subscription scope would be appropriate.
Why candidates choose this
Candidates may think subscription scope is necessary to cover all resources, overlooking the need for least privilege and the specific constraint to limit access to a single resource group.
✗Assign the role at the management group scope above the subscription.Wrong answer — click to see why▾
Why this is wrong here
Assigning the role at the management group scope would grant permissions to start/stop VMs in all subscriptions under that management group, not just RG-App, violating the requirement to restrict access to only RG-App.
★ When this WOULD be the correct answer
If the question required the contractor to manage VMs across multiple subscriptions that all belong to the same management group, and the role assignment should cover all those subscriptions, then assigning at the management group scope would be correct.
Why candidates choose this
Candidates may think that using a higher scope like management group is more efficient or covers all necessary resources, but they overlook the need for least privilege and the specific constraint to limit access to only one resource group.
✗Assign the role directly to one virtual machine only, because that is always the best scope.Wrong answer — click to see why▾
Why this is wrong here
Assigning the role to a single VM would only grant permissions on that VM, not on all VMs in RG-App, and the requirement is to manage all VMs in the resource group.
★ When this WOULD be the correct answer
If the question required granting permissions to start and stop only one specific VM (e.g., a critical server) and no other resources, assigning the role at the VM scope would be correct.
Why candidates choose this
Candidates may think that assigning at the most granular scope (VM) is always best, but they overlook that the requirement covers multiple VMs in the resource group.
Analysis generated from the official AZ-104blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often assume assigning at the subscription scope is simpler and still 'covers the work area,' failing to recognize that it violates least privilege by granting access to all resource groups, not just RG-App.
Detailed technical explanation
How to think about this question
Azure RBAC uses a hierarchical inheritance model: permissions assigned at a higher scope (management group, subscription, resource group) are inherited by all child scopes. The Virtual Machine Contributor role includes 'Microsoft.Compute/virtualMachines/start/action' and 'Microsoft.Compute/virtualMachines/deallocate/action' actions, which allow starting and stopping VMs. By assigning this role at the resource group scope, the contractor's effective permissions are limited to that resource group, and Azure's deny assignments (e.g., from Azure Policy) can further restrict actions if needed.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A company's IT admin needs to give a contractor read-only access to production logs without sharing account credentials. Using role-based access control (RBAC) and temporary scoped permissions — not a permanent shared password — is the correct pattern. Questions like this test whether you can apply least-privilege access across cloud identity services.
Quick reference
Access Control Model Comparison
Model
Acronym
Who Controls Access?
Best For
Discretionary Access Control
DAC
Resource owner
Small teams, file shares
Mandatory Access Control
MAC
System / security labels
Classified govt / military
Role-Based Access Control
RBAC
Administrator (via roles)
Enterprise environments
Attribute-Based Access Control
ABAC
Policy engine (user + resource attributes)
Fine-grained, dynamic policies
Rule-Based Access Control
RuBAC
System rules / ACLs
Firewall rules, network ACLs
Related glossary terms
Concepts from this question explained
These glossary pages explain the core terms tested in this AZ-104 question in full detail.
Manage Azure Identities and Governance — This question tests Manage Azure Identities and Governance — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Assign the role at the resource group scope for RG-App. — The contractor needs to manage virtual machines only within RG-App. Azure RBAC allows you to assign the Virtual Machine Contributor role at the resource group scope, which grants permissions to start and stop VMs within that specific resource group while preventing access to resources in other resource groups or at higher scopes. Assigning at the subscription or management group level would grant permissions across all resource groups, violating the principle of least privilege.
What should I do if I get this AZ-104 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This AZ-104 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the AZ-104 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.