0
0
Azurecloud~20 mins

Resource groups as logical containers in Azure - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Resource Group Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Purpose of Azure Resource Groups
Which of the following best describes the main purpose of an Azure Resource Group?
AIt acts as a logical container to manage and organize related Azure resources together.
BIt is a physical server where Azure resources are hosted.
CIt is a security boundary that encrypts all resources inside it automatically.
DIt is a billing account that charges resources individually.
Attempts:
2 left
💡 Hint
Think about how you would group related items in a folder to keep them organized.
Architecture
intermediate
2:00remaining
Resource Group Scope for Role-Based Access Control
You want to assign permissions to a team so they can manage only the resources related to a specific project. What is the best scope to assign the role?
AAssign the role at the management group level above subscriptions.
BAssign the role at the individual resource level for each resource in the project.
CAssign the role at the subscription level to cover all projects.
DAssign the role at the resource group level containing the project resources.
Attempts:
2 left
💡 Hint
Consider the smallest logical container that groups all project resources together.
Configuration
advanced
2:30remaining
Deploying Resources Across Multiple Resource Groups
You have an ARM template that deploys a virtual network and a virtual machine. You want the virtual network in Resource Group A and the virtual machine in Resource Group B. Which approach is correct?
ACreate a single resource group containing both resources; ARM templates cannot deploy across multiple groups.
BDeploy the ARM template once to Resource Group A; resources will automatically distribute to Resource Group B.
CDeploy the ARM template twice, once targeting Resource Group A for the network, and once targeting Resource Group B for the VM.
DDeploy the ARM template once to Resource Group B; resources will automatically distribute to Resource Group A.
Attempts:
2 left
💡 Hint
Think about how ARM templates target resource groups during deployment.
security
advanced
2:00remaining
Impact of Deleting a Resource Group
What happens when you delete an Azure Resource Group?
AOnly the resource group container is deleted; resources remain intact.
BThe resource group and all resources inside it are deleted permanently.
CResources are moved to a default resource group automatically.
DResources are archived for 30 days before permanent deletion.
Attempts:
2 left
💡 Hint
Consider what happens to items inside a folder when you delete the folder itself.
service_behavior
expert
2:30remaining
Resource Group Location and Resource Deployment
You create a resource group in the East US region. Later, you deploy a storage account to this resource group but specify the West US region for the storage account location. What is the outcome?
AThe storage account is created in West US, independent of the resource group location.
BDeployment fails because resource location must match resource group location.
CThe storage account is created in East US, matching the resource group location automatically.
DThe storage account is created in a random Azure region.
Attempts:
2 left
💡 Hint
Think about whether resource group location restricts where resources can be placed.