0
0
Azurecloud~10 mins

AKS vs App Service vs Functions 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 best suited for running containerized applications with full control over orchestration.

Azure
service_choice = "[1]"  # Choose between AKS, App Service, or Functions
Drag options to blanks, or click blank then click option'
ABlob Storage
BFunctions
CApp Service
DAKS
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing App Service or Functions for full container orchestration.
2fill in blank
medium

Complete the code to select the Azure service best suited for hosting web apps with easy deployment and scaling.

Azure
service_choice = "[1]"  # Choose between AKS, App Service, or Functions
Drag options to blanks, or click blank then click option'
AApp Service
BFunctions
CAKS
DVirtual Machines
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing AKS which requires more management.
3fill in blank
hard

Fix the error in selecting the Azure service best suited for event-driven, serverless compute.

Azure
service_choice = "[1]"  # Choose between AKS, App Service, or Functions
Drag options to blanks, or click blank then click option'
AApp Service
BSQL Database
CFunctions
DAKS
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing App Service or AKS for serverless compute.
4fill in blank
hard

Fill both blanks to match the Azure service with its key feature.

Azure
service_features = {
  "AKS": "[1]",
  "Functions": "[2]"
}
Drag options to blanks, or click blank then click option'
AContainer orchestration
BServerless compute
CManaged SQL database
DStatic website hosting
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing Functions with database or hosting services.
5fill in blank
hard

Fill all three blanks to complete the decision guide for choosing Azure services.

Azure
decision_guide = {
  "Use AKS when": "[1]",
  "Use App Service when": "[2]",
  "Use Functions when": "[3]"
}
Drag options to blanks, or click blank then click option'
AYou need full control over container orchestration
BYou want easy deployment of web apps with built-in scaling
CYou want event-driven, serverless compute
DYou need a relational database service
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up use cases or choosing unrelated options.