0
0
Azurecloud~20 mins

Container services comparison in Azure - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Azure Container Services Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Differences between Azure Container Instances and Azure Kubernetes Service
Which statement correctly describes a key difference between Azure Container Instances (ACI) and Azure Kubernetes Service (AKS)?
AAKS is serverless and does not require cluster management, while ACI requires manual server setup.
BBoth ACI and AKS require manual scaling of container instances.
CACI is a serverless container service that runs containers without managing servers, while AKS requires managing a Kubernetes cluster.
DACI supports complex orchestration features like automatic load balancing, while AKS does not.
Attempts:
2 left
💡 Hint
Think about which service abstracts infrastructure management.
Architecture
intermediate
2:00remaining
Choosing container service for microservices architecture
You want to deploy a microservices application with multiple containers that need to communicate, scale independently, and have rolling updates. Which Azure container service is best suited?
AAzure Kubernetes Service (AKS) because it supports orchestration, scaling, and rolling updates.
BAzure Container Instances (ACI) because it supports complex orchestration and rolling updates.
CAzure App Service because it is designed for container orchestration.
DAzure Functions because it runs containers with microservices support.
Attempts:
2 left
💡 Hint
Consider which service supports container orchestration and scaling features.
service_behavior
advanced
2:00remaining
Behavior of Azure Container Instances on resource limits
What happens when an Azure Container Instance exceeds its allocated CPU or memory limits during runtime?
AThe container continues running without any impact despite exceeding limits.
BThe container is automatically restarted by ACI to recover from resource exhaustion.
CACI automatically scales up resources to meet container demand.
DThe container is throttled or terminated by the platform, causing possible failure.
Attempts:
2 left
💡 Hint
Think about how resource limits protect the host environment.
security
advanced
2:00remaining
Securing container images in Azure container services
Which option best describes a recommended practice to secure container images used in Azure Container Instances or AKS?
AStore container images in Azure Container Registry with image scanning and access control.
BUse public container registries without authentication for faster deployment.
CBuild container images directly on the production cluster to avoid image transfer.
DUse unverified third-party images to save time on development.
Attempts:
2 left
💡 Hint
Consider how to protect images from vulnerabilities and unauthorized access.
Best Practice
expert
2:00remaining
Optimizing cost and performance for container workloads in Azure
You have a variable workload with unpredictable spikes running containerized apps. Which approach best balances cost efficiency and performance using Azure container services?
AUse AKS with manual scaling to adjust nodes once per month.
BUse Azure Container Instances for burst workloads and AKS for steady workloads, combining both.
CUse only Azure Container Instances for all workloads regardless of size or duration.
DUse Azure Kubernetes Service with a fixed number of nodes to handle peak load at all times.
Attempts:
2 left
💡 Hint
Think about combining services to optimize cost and handle spikes.