Complete the code to select the Azure service type for running code without managing servers.
service_type = "[1]" # Choose the serverless option
Azure Functions is the serverless option where you run code without managing servers.
Complete the code to select the Azure service type that provides managed platform for web apps.
service_type = "[1]" # Choose the PaaS option
Azure App Service is a PaaS offering that manages the platform for web apps.
Fix the error in selecting the Azure service type for full control over virtual machines.
service_type = "[1]" # Choose the IaaS option
Azure Virtual Machines provide full control over the OS and software, which is IaaS.
Fill both blanks to match the service type with its description.
service_type = "[1]" # runs code without server management service_description = "[2]"
Azure Functions is serverless and runs code on demand without server management.
Fill all three blanks to complete the decision logic for choosing Azure service types.
if need_full_control: service = "[1]" elif want_managed_platform: service = "[2]" else: service = "[3]"
If you need full control, choose Azure Virtual Machines (IaaS). For managed platform, choose Azure App Service (PaaS). Otherwise, for serverless, choose Azure Functions.