0
0
Azurecloud~20 mins

Why containers on Azure matter - Challenge Your Understanding

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Azure Container Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Why use containers on Azure instead of traditional virtual machines?

Imagine you want to run multiple small apps on Azure. Which reason best explains why containers are better than traditional virtual machines for this?

AContainers cannot run on Azure, only virtual machines can.
BContainers require a full OS for each app, making them heavier than virtual machines.
CVirtual machines start instantly and share the same OS kernel, unlike containers.
DContainers share the host OS and start faster, using fewer resources than virtual machines.
Attempts:
2 left
💡 Hint

Think about how much system resources each app needs and how quickly it can start.

Architecture
intermediate
2:00remaining
Which Azure service is best for running containers with automatic scaling?

You want to deploy a containerized app on Azure that can automatically add or remove instances based on demand. Which service should you choose?

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

Look for a service designed to manage many containers and scale them automatically.

security
advanced
2:00remaining
What is a key security benefit of using containers on Azure?

Which option describes a main security advantage of running containers on Azure?

AContainers isolate applications from each other, reducing risk if one is compromised.
BContainers share all files and processes, so a breach affects all apps equally.
CContainers require no security updates because they are isolated from the host OS.
DContainers automatically encrypt all data without configuration.
Attempts:
2 left
💡 Hint

Think about how containers keep apps separated to limit damage.

service_behavior
advanced
2:00remaining
What happens when you update a container image in Azure Container Instances (ACI)?

You have a container running in Azure Container Instances. You update the container image in your registry. What happens to the running container?

AAzure Container Instances deletes the container and creates a new one instantly.
BThe container automatically updates itself without downtime.
CThe running container does not change until you manually restart or redeploy it.
DThe container crashes because the image changed.
Attempts:
2 left
💡 Hint

Consider how Azure Container Instances manages running containers and image updates.

Best Practice
expert
3:00remaining
Which practice best ensures reliable container deployments on Azure Kubernetes Service (AKS)?

To keep your containerized app running smoothly on AKS, which practice is most important?

ADisable automatic scaling to avoid unexpected changes.
BUse health probes (liveness and readiness) to monitor container status and restart unhealthy containers automatically.
CDeploy all containers on a single node to reduce network latency.
DManually check container logs daily and restart pods if needed.
Attempts:
2 left
💡 Hint

Think about how AKS can detect and fix problems with containers automatically.