0
0
Azurecloud~10 mins

What is Azure - Interactive Quiz & Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a basic Azure resource group.

Azure
az group create --name [1] --location eastus
Drag options to blanks, or click blank then click option'
AMyResourceGroup
Beastus
Ccreate
Dresource
Attempts:
3 left
💡 Hint
Common Mistakes
Using the location value instead of the resource group name.
Confusing command keywords with parameter values.
2fill in blank
medium

Complete the code to list all Azure virtual machines in a resource group.

Azure
az vm list --resource-group [1] --output table
Drag options to blanks, or click blank then click option'
Aeastus
Blist
CMyResourceGroup
Dvm
Attempts:
3 left
💡 Hint
Common Mistakes
Using the location name instead of the resource group name.
Confusing command names with parameter values.
3fill in blank
hard

Fix the error in the command to start an Azure virtual machine.

Azure
az vm [1] --name MyVM --resource-group MyResourceGroup
Drag options to blanks, or click blank then click option'
Acreate
Bdelete
Cstop
Dstart
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'stop' instead of 'start' to power on the VM.
Using 'create' when the VM already exists.
4fill in blank
hard

Fill both blanks to create a storage account with the correct SKU and kind.

Azure
az storage account create --name mystorageacct --resource-group MyResourceGroup --sku [1] --kind [2]
Drag options to blanks, or click blank then click option'
AStandard_LRS
BPremium_LRS
CStorageV2
DBlobStorage
Attempts:
3 left
💡 Hint
Common Mistakes
Using Premium_LRS which is more expensive and specialized.
Choosing BlobStorage kind which only supports blobs.
5fill in blank
hard

Fill all three blanks to create a virtual network with a subnet in Azure.

Azure
az network vnet create --name [1] --resource-group MyResourceGroup --address-prefix [2] --subnet-name [3] --subnet-prefix 10.0.1.0/24
Drag options to blanks, or click blank then click option'
AMyVNet
B10.0.0.0/16
CMySubnet
DMyResourceGroup
Attempts:
3 left
💡 Hint
Common Mistakes
Using the resource group name as the VNet name.
Using subnet prefix as the VNet address prefix.