Complete the code to specify the cloud service model for a virtual machine in Azure.
service_model = "[1]" # This model provides virtual machines and storage
IaaS (Infrastructure as a Service) provides virtual machines and storage, which is what this code represents.
Complete the code to specify the cloud service model for Azure App Service.
service_model = "[1]" # This model manages the platform for your app
PaaS (Platform as a Service) provides a platform to deploy and manage applications without managing the underlying infrastructure.
Fix the error in the code to correctly identify the cloud service model for Microsoft 365.
service_model = "[1]" # This model delivers software over the internet
SaaS (Software as a Service) delivers software applications over the internet, like Microsoft 365.
Fill both blanks to complete the dictionary mapping Azure services to their cloud service models.
azure_services = {"Virtual Machines": "[1]", "App Service": "[2]"}Virtual Machines are IaaS, and App Service is PaaS in Azure.
Fill all three blanks to complete the dictionary mapping Azure services to their cloud service models.
azure_services = {"Virtual Machines": "[1]", "App Service": "[2]", "Microsoft 365": "[3]"}Virtual Machines are IaaS, App Service is PaaS, and Microsoft 365 is SaaS.