0
0
Azurecloud~20 mins

AKS vs App Service vs Functions decision in Azure - Practice Questions

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Azure Service Decision Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Choosing the right Azure service for a microservices app

You have a microservices application with multiple components that need to scale independently and require container orchestration. Which Azure service is the best fit?

AAzure Blob Storage
BAzure App Service
CAzure Functions
DAzure Kubernetes Service (AKS)
Attempts:
2 left
💡 Hint

Think about container orchestration and independent scaling.

service_behavior
intermediate
2:00remaining
Scaling behavior of Azure Functions

Which statement best describes how Azure Functions scale when demand increases?

AAzure Functions require manual scaling through the Azure portal.
BAzure Functions scale only vertically by increasing CPU and memory of a single instance.
CAzure Functions automatically scale out by creating more instances based on incoming events.
DAzure Functions do not support scaling and run on a fixed number of instances.
Attempts:
2 left
💡 Hint

Consider how serverless services handle load.

Architecture
advanced
2:00remaining
Best Azure service for a long-running background job

You need to run a background job that processes large files and can take several hours to complete. Which Azure service is most suitable?

AAzure Kubernetes Service (AKS)
BAzure App Service WebJob
CAzure Logic Apps
DAzure Functions with a consumption plan
Attempts:
2 left
💡 Hint

Think about long-running processes and control over execution.

security
advanced
2:00remaining
Securing sensitive environment variables in Azure App Service

Which method is the most secure way to manage sensitive environment variables like API keys in Azure App Service?

AUse Azure Key Vault references in App Service Application Settings.
BHardcode them in the application source code.
CStore them directly in the App Service Application Settings.
DSave them in a public GitHub repository linked to the app.
Attempts:
2 left
💡 Hint

Consider secure storage and access management for secrets.

Best Practice
expert
2:00remaining
Optimizing cost and performance for event-driven workloads

You have an event-driven workload with unpredictable traffic spikes. You want to minimize cost while ensuring fast response times. Which Azure service and plan combination is the best choice?

AAzure Kubernetes Service with fixed node count
BAzure Functions on a Premium plan with pre-warmed instances
CAzure App Service on a Standard plan with manual scaling
DAzure Functions on a Consumption plan without pre-warmed instances
Attempts:
2 left
💡 Hint

Think about balancing cost, scaling, and cold start delays.