Complete the code to select a VM size optimized for burstable workloads.
vm_size = "Standard_[1]s"
The B-series VMs are designed for burstable workloads, so "B1" is the correct choice.
Complete the code to select a VM size optimized for memory-intensive workloads.
vm_size = "Standard_[1]s"
E-series VMs are optimized for memory-intensive applications, so "E4" is the right choice.
Fix the error in the VM size selection for compute-optimized workloads.
vm_size = "Standard_[1]s"
F-series VMs are compute optimized, so "F4" is the correct VM size for compute-heavy workloads.
Fill both blanks to create a dictionary mapping VM series to their optimization type.
vm_optimization = {"B": "[1]", "E": "[2]"}B-series is for burstable workloads and E-series is for memory optimized workloads.
Fill all three blanks to create a dictionary mapping VM series to their typical use case.
vm_use_cases = {"B": "[1]", "D": "[2]", "F": "[3]"}B-series is for burstable workloads, D-series is general purpose, and F-series is compute optimized.