nerdexam
Microsoft

AZ-104 · Question #673

Hotspot Question You have an Azure subscription that contains the resource groups shown in the following table. You create the following Azure Resource Manager (ARM) template named deploy.json. You…

The correct answer is The template creates a resource group named RG0 in the East US Azure region. = Yes; The template creates four new resource groups. = No; The template creates a resource group named RG3 in the West US Azure region. = No. The ARM template is deployed using a subscription-level deployment cmdlet (New-AzDeployment) with a specified location, and it uses a 'Microsoft.Resources/resourceGroups' resource type to create resource groups. The template creates RG0 in East US as defined in the template's…

Submitted by paula_co· Mar 4, 2026Deploy and manage Azure compute resources / Implement and manage infrastructure as code using ARM templates - typically covered under 'Deploy and Manage Azure Resources' in AZ-104 or equivalent certification domains.

Question

Hotspot Question You have an Azure subscription that contains the resource groups shown in the following table. You create the following Azure Resource Manager (ARM) template named deploy.json. You deploy the template by running the following cmdlet. For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point. Answer:

Exhibits

AZ-104 question #673 exhibit 1
AZ-104 question #673 exhibit 2

Answer Area

  • The template creates a resource group named RG0 in the East US Azure region.Yes
  • The template creates four new resource groups.No
  • The template creates a resource group named RG3 in the West US Azure region.No

Explanation

The ARM template is deployed using a subscription-level deployment cmdlet (New-AzDeployment) with a specified location, and it uses a 'Microsoft.Resources/resourceGroups' resource type to create resource groups. The template creates RG0 in East US as defined in the template's resource properties, and since RG0 already exists, it is idempotent - ARM will update or confirm the existing resource group in East US. The template only creates or updates resource groups explicitly defined within it, not four new ones, and RG3 would only be created if specified in the template with West US as its location.

Topics

#ARM Templates#Resource Groups#Subscription-Level Deployments#Azure Resource Manager

Community Discussion

No community discussion yet for this question.

Full AZ-104 Practice