Start here! Get your feet wet with the Microsoft cloud and begin your journey to earning your Microsoft Certified: Azure Fundamentals certification!
Prepare and test your skills

Prepare and test your skills

Worked example. The correct answer is already marked and every option is explained below, so there is nothing to select here. To answer questions yourself, start the free trial.
An administrator is preparing to deploy infrastructure using an Azure Resource Manager (ARM) template.
Before executing the deployment, the administrator needs to evaluate the template to preview which resources will be created, modified, or deleted, as well as detect syntax and preflight validation errors without making actual changes to the live environment.
Which operation should the administrator execute?
Keep the momentum going with these hand-picked practice scenarios
Want more questions like this?
Get a free certification question every week.
The what-if operation in Azure Resource Manager allows administrators and engineers to preview the exact changes that will occur before executing an ARM template deployment. It compares the desired state described in the template against the current real-time state of the target environment.
az deployment group what-if), and Azure PowerShell (Get-AzResourceGroupDeploymentWhatIfResult).The what-if operation is specifically designed for pre-deployment inspection and validation. It allows administrators to verify template logic, ensure expected outcomes, and identify configuration errors safely before initiating actual infrastructure modifications.