0
0
Azurecloud~10 mins

App Service plans and pricing tiers in Azure - Interactive Code Practice

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

Complete the code to specify the pricing tier for an Azure App Service plan.

Azure
az appservice plan create --name myPlan --resource-group myResourceGroup --sku [1]
Drag options to blanks, or click blank then click option'
AB1
BFree
CStandard
DPremiumV2
Attempts:
3 left
💡 Hint
Common Mistakes
Using full tier names instead of SKU codes.
Using unsupported SKU codes.
2fill in blank
medium

Complete the code to create an App Service plan with the correct pricing tier for production workloads.

Azure
az appservice plan create --name prodPlan --resource-group prodGroup --sku [1]
Drag options to blanks, or click blank then click option'
AB1
BF1
CD1
DS1
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing Free or Basic tiers for production.
Using deprecated SKU codes.
3fill in blank
hard

Fix the error in the command to create an App Service plan with the PremiumV2 tier.

Azure
az appservice plan create --name premiumPlan --resource-group rg1 --sku [1]
Drag options to blanks, or click blank then click option'
APremium
BP1v2
CPremiumV2
DP2
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'PremiumV2' as SKU instead of 'P1v2'.
Using 'Premium' which is invalid SKU.
4fill in blank
hard

Fill both blanks to create an App Service plan with the correct SKU and specify the operating system as Linux.

Azure
az appservice plan create --name linuxPlan --resource-group rgLinux --sku [1] --is-linux [2]
Drag options to blanks, or click blank then click option'
AB1
Btrue
Cfalse
DS1
Attempts:
3 left
💡 Hint
Common Mistakes
Setting '--is-linux' to false for Linux plans.
Using incorrect SKU codes.
5fill in blank
hard

Fill all three blanks to create a PremiumV3 tier App Service plan with 3 instances and enable zone redundancy.

Azure
az appservice plan create --name stdPlan --resource-group rgStd --sku [1] --number-of-workers [2] --zone-redundant [3]
Drag options to blanks, or click blank then click option'
AP1v3
B3
Ctrue
Dfalse
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong SKU codes.
Setting zone redundancy to false when needed.