0
0
Azurecloud~10 mins

Azure Savings Plans - Interactive Code Practice

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

Complete the code to create an Azure Savings Plan with a one-year commitment.

Azure
az savingsplan create --name mySavingsPlan --term [1]
Drag options to blanks, or click blank then click option'
AP3Y
BP1Y
CP6M
DP5Y
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing a commitment period longer than intended.
Using unsupported commitment durations.
2fill in blank
medium

Complete the code to specify the scope of the Azure Savings Plan to a subscription.

Azure
az savingsplan create --name mySavingsPlan --scope [1]
Drag options to blanks, or click blank then click option'
Asubscription
Bresource-group
Cmanagement-group
Dtenant
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing resource-group scope with subscription scope.
Using tenant scope which is broader than subscription.
3fill in blank
hard

Fix the error in the command to specify the product type for the Azure Savings Plan.

Azure
az savingsplan create --name mySavingsPlan --product [1]
Drag options to blanks, or click blank then click option'
AVirtualMachines
BVMs
Cvirtualmachines
DCompute
Attempts:
3 left
💡 Hint
Common Mistakes
Using uppercase letters in product names.
Using shorthand or incorrect product names.
4fill in blank
hard

Fill both blanks to create a Savings Plan with a three-year commitment and scope set to management group.

Azure
az savingsplan create --term [1] --scope [2]
Drag options to blanks, or click blank then click option'
AP3Y
Bsubscription
Cmanagement-group
DP1Y
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up subscription and management group scopes.
Choosing incorrect commitment durations.
5fill in blank
hard

Fill all three blanks to create a Savings Plan named 'plan1' with a one-year commitment, product 'Compute', and scope 'subscription'.

Azure
az savingsplan create --name [1] --term [2] --product [3] --scope "/subscriptions/12345678-1234-1234-1234-123456789012"
Drag options to blanks, or click blank then click option'
Aplan1
BP1Y
CCompute
DplanA
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect plan names.
Wrong commitment or product strings.