0
0
Azurecloud~10 mins

VM sizes and series (B, D, E, F) 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 select a VM size optimized for burstable workloads.

Azure
vm_size = "Standard_[1]s"
Drag options to blanks, or click blank then click option'
AF2
BB1
CE2
DD2
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing D-series which is for general purpose but not burstable.
Selecting E-series which is memory optimized.
Picking F-series which is compute optimized.
2fill in blank
medium

Complete the code to select a VM size optimized for memory-intensive workloads.

Azure
vm_size = "Standard_[1]s"
Drag options to blanks, or click blank then click option'
AD4
BB2
CE4
DF4
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing B-series which is burstable but not memory optimized.
Selecting D-series which is general purpose.
Picking F-series which is compute optimized.
3fill in blank
hard

Fix the error in the VM size selection for compute-optimized workloads.

Azure
vm_size = "Standard_[1]s"
Drag options to blanks, or click blank then click option'
AB4
BD4
CE4
DF4
Attempts:
3 left
💡 Hint
Common Mistakes
Using B-series which is burstable but not compute optimized.
Choosing D-series which is general purpose.
Selecting E-series which is memory optimized.
4fill in blank
hard

Fill both blanks to create a dictionary mapping VM series to their optimization type.

Azure
vm_optimization = {"B": "[1]", "E": "[2]"}
Drag options to blanks, or click blank then click option'
Aburstable
Bcompute
Cmemory
Dgeneral
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing compute and burstable optimizations.
Confusing general purpose with memory optimized.
5fill in blank
hard

Fill all three blanks to create a dictionary mapping VM series to their typical use case.

Azure
vm_use_cases = {"B": "[1]", "D": "[2]", "F": "[3]"}
Drag options to blanks, or click blank then click option'
Aburstable workloads
Bgeneral purpose
Ccompute optimized
Dmemory optimized
Attempts:
3 left
💡 Hint
Common Mistakes
Assigning memory optimized to D-series.
Confusing compute optimized with burstable.