Complete the code to create a basic Azure resource group.
az group create --name [1] --location eastusThe --name parameter specifies the name of the resource group to create.
Complete the code to list all Azure virtual machines in a resource group.
az vm list --resource-group [1] --output tableThe --resource-group parameter specifies which resource group to list VMs from.
Fix the error in the command to start an Azure virtual machine.
az vm [1] --name MyVM --resource-group MyResourceGroupThe start command powers on the virtual machine.
Fill both blanks to create a storage account with the correct SKU and kind.
az storage account create --name mystorageacct --resource-group MyResourceGroup --sku [1] --kind [2]
Standard_LRS is a common SKU for storage accounts offering locally redundant storage.
StorageV2 is the general-purpose v2 kind supporting blobs, files, queues, and tables.
Fill all three blanks to create a virtual network with a subnet in Azure.
az network vnet create --name [1] --resource-group MyResourceGroup --address-prefix [2] --subnet-name [3] --subnet-prefix 10.0.1.0/24
MyVNet is the name of the virtual network.
10.0.0.0/16 is the address space for the VNet.
MySubnet is the name of the subnet inside the VNet.