0
0
Azurecloud~10 mins

Cloud service models (IaaS, PaaS, SaaS) 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 specify the cloud service model for a virtual machine in Azure.

Azure
service_model = "[1]"  # This model provides virtual machines and storage
Drag options to blanks, or click blank then click option'
APaaS
BSaaS
CIaaS
DFaaS
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing PaaS or SaaS which provide higher-level services.
2fill in blank
medium

Complete the code to specify the cloud service model for Azure App Service.

Azure
service_model = "[1]"  # This model manages the platform for your app
Drag options to blanks, or click blank then click option'
APaaS
BIaaS
CSaaS
DDaaS
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing PaaS with IaaS or SaaS.
3fill in blank
hard

Fix the error in the code to correctly identify the cloud service model for Microsoft 365.

Azure
service_model = "[1]"  # This model delivers software over the internet
Drag options to blanks, or click blank then click option'
AIaaS
BSaaS
CCaaS
DPaaS
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing IaaS or PaaS which are more infrastructure or platform focused.
4fill in blank
hard

Fill both blanks to complete the dictionary mapping Azure services to their cloud service models.

Azure
azure_services = {"Virtual Machines": "[1]", "App Service": "[2]"}
Drag options to blanks, or click blank then click option'
AIaaS
BSaaS
CPaaS
DFaaS
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up IaaS and PaaS for these services.
5fill in blank
hard

Fill all three blanks to complete the dictionary mapping Azure services to their cloud service models.

Azure
azure_services = {"Virtual Machines": "[1]", "App Service": "[2]", "Microsoft 365": "[3]"}
Drag options to blanks, or click blank then click option'
AIaaS
BSaaS
CPaaS
DDaaS
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing SaaS with PaaS or IaaS for Microsoft 365.