0
0
Azurecloud~10 mins

Serverless vs PaaS vs IaaS decision in Azure - Interactive Practice

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

Complete the code to select the Azure service type for running code without managing servers.

Azure
service_type = "[1]"  # Choose the serverless option
Drag options to blanks, or click blank then click option'
AAzure Functions
BAzure Blob Storage
CAzure Virtual Machines
DAzure App Service
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing a service that requires managing servers.
2fill in blank
medium

Complete the code to select the Azure service type that provides managed platform for web apps.

Azure
service_type = "[1]"  # Choose the PaaS option
Drag options to blanks, or click blank then click option'
AAzure App Service
BAzure Functions
CAzure Virtual Machines
DAzure Storage Accounts
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing serverless with PaaS.
3fill in blank
hard

Fix the error in selecting the Azure service type for full control over virtual machines.

Azure
service_type = "[1]"  # Choose the IaaS option
Drag options to blanks, or click blank then click option'
AAzure SQL Database
BAzure Functions
CAzure App Service
DAzure Virtual Machines
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing managed services instead of virtual machines.
4fill in blank
hard

Fill both blanks to match the service type with its description.

Azure
service_type = "[1]"  # runs code without server management
service_description = "[2]"
Drag options to blanks, or click blank then click option'
AAzure Functions
BRuns code on demand without managing servers
CAzure Virtual Machines
DProvides full control over OS and software
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing service names with wrong descriptions.
5fill in blank
hard

Fill all three blanks to complete the decision logic for choosing Azure service types.

Azure
if need_full_control:
    service = "[1]"
elif want_managed_platform:
    service = "[2]"
else:
    service = "[3]"
Drag options to blanks, or click blank then click option'
AAzure App Service
BAzure Functions
CAzure Virtual Machines
DAzure SQL Database
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping service types or mixing up conditions.