Question 445 of 981
AZ-900 Describe Azure architecture and services Practice Question
A company wants to run a containerized application quickly without managing any virtual machines or orchestration infrastructure. They just need to start a container and have it run. Which Azure service is best suited for this?
⚠ Common exam trap
Candidates often confuse Azure Container Instances with Azure Kubernetes Service, assuming that any container workload requires orchestration, but ACI is specifically designed for scenarios where you want to run a container without managing orchestration or VMs.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Azure Container Instances
Azure Container Instances (ACI) is the correct choice because it provides a serverless container platform that allows you to run a container directly without managing any underlying virtual machines or orchestration infrastructure. You simply specify the container image and resource requirements, and ACI launches the container in seconds, making it ideal for quick, isolated container workloads.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
Azure Container Instances
Why this is correct
Azure Container Instances (ACI) provides a serverless platform for running containers on demand, meaning you do not have to provision, manage, or scale any underlying virtual machines or orchestration clusters. Each container is directly placed on Azure's infrastructure and starts within seconds, with per-second billing and configurable CPU and memory limits. This makes ACI ideal for simple containerized applications, batch jobs, or ephemeral workloads where you want no infrastructure management. However, you still control the container image and environment variables, but you completely skip host-level patching and node pool administration.
- ✗
Azure Kubernetes Service
Why it's wrong here
Azure Kubernetes Service (AKS) is indeed a managed Kubernetes offering, but 'managed' does not mean zero administration—you are still responsible for provisioning, maintaining, and patching the agent nodes that run your workloads. You must also manage node pools, autoscaling rules, cluster networking, RBAC, and other Kubernetes configuration such as quotas and network policies. Although AKS reduces the operational burden of the Kubernetes control plane, it still requires significant expertise and introduces unnecessary overhead for running a single containerized application quickly. For a simple, fast deployment without cluster management, AKS is overly complex and not serverless.
When this WOULD be correct
A company needs to deploy and manage a large-scale, microservices-based application with complex orchestration, scaling, and self-healing requirements across multiple containers. AKS would be correct when the question emphasizes orchestration, scaling, and management of container clusters rather than simplicity and speed.
- ✗
Azure App Service
Why it's wrong here
Azure App Service can run containers through the Web App for Containers feature, but it is fundamentally a platform-as-a-service designed for web applications and HTTP-centric workloads, not a generic container execution environment. It requires an App Service Plan, which defines underlying virtual machines and incurs costs even when the container is idle, meaning you are still managing the plan's scaling and pricing tier. Additionally, App Service adds its own HTTP traffic handling, authentication, and built-in routing features that are unnecessary for a simple containerized process. Therefore, while it can host a container, it is not a serverless container service like ACI and brings unneeded complexity and cost.
When this WOULD be correct
A company wants to deploy a web application built with .NET, Java, or Node.js without managing the underlying infrastructure, and they need built-in scaling, deployment slots, and integration with Azure DevOps. Azure App Service would be the correct answer in that scenario.
- ✗
Azure Functions
Why it's wrong here
Azure Functions is an event-driven serverless compute service that executes a single function in response to triggers such as HTTP requests, timers, or queue messages. It does not allow you to run an arbitrary, standalone container image; instead, your code runs inside the Functions runtime, which supports specific language stacks and custom handlers. Even when you use the custom containers hosting option, the model is still about one function endpoint, not a long-running, self-contained containerized application with its own runtime and dependencies. Thus, Functions is not designed for running entire containerized applications quickly, making it an incorrect choice for this scenario.
When this WOULD be correct
When the question asks for a serverless compute service to run event-triggered code (e.g., processing HTTP requests, queue messages, or timer events) without managing infrastructure, and the code is not containerized but written in a supported language (C#, JavaScript, Python, etc.).
Option-by-option analysis
Why each answer is right or wrong
Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The AZ-900 exam frequently reuses these exact scenarios with slightly different constraints.
✓Azure Container InstancesCorrect answer▾
Why this is correct
Azure Container Instances (ACI) provides a serverless platform for running containers on demand, meaning you do not have to provision, manage, or scale any underlying virtual machines or orchestration clusters. Each container is directly placed on Azure's infrastructure and starts within seconds, with per-second billing and configurable CPU and memory limits. This makes ACI ideal for simple containerized applications, batch jobs, or ephemeral workloads where you want no infrastructure management. However, you still control the container image and environment variables, but you completely skip host-level patching and node pool administration.
✗Azure Kubernetes ServiceWrong answer — click to see why▾
Why this is wrong here
Azure Kubernetes Service (AKS) requires managing a cluster of virtual machines and orchestration infrastructure, which contradicts the requirement to run a containerized application quickly without managing any VMs or orchestration.
★ When this WOULD be the correct answer
A company needs to deploy and manage a large-scale, microservices-based application with complex orchestration, scaling, and self-healing requirements across multiple containers. AKS would be correct when the question emphasizes orchestration, scaling, and management of container clusters rather than simplicity and speed.
Why candidates choose this
Candidates may associate containers with Kubernetes and assume AKS is the default choice for any container workload, overlooking the specific requirement to avoid managing orchestration infrastructure.
✗Azure App ServiceWrong answer — click to see why▾
Why this is wrong here
Azure App Service is a platform-as-a-service (PaaS) for hosting web applications, but it requires managing the underlying app service plan and does not directly run containers without orchestration. It is not designed for quick, single-container deployment without VM or orchestration management.
★ When this WOULD be the correct answer
A company wants to deploy a web application built with .NET, Java, or Node.js without managing the underlying infrastructure, and they need built-in scaling, deployment slots, and integration with Azure DevOps. Azure App Service would be the correct answer in that scenario.
Why candidates choose this
Candidates may think App Service can run containers easily because it supports container deployment, but they overlook that it still requires an App Service Plan (which involves VM management) and is more complex than Container Instances for simple container runs.
✗Azure FunctionsWrong answer — click to see why▾
Why this is wrong here
Azure Functions is event-driven and designed for short-lived, stateless code execution, not for running arbitrary containers. The question specifies running a containerized application, which requires a container runtime, not a function-as-a-service platform.
★ When this WOULD be the correct answer
When the question asks for a serverless compute service to run event-triggered code (e.g., processing HTTP requests, queue messages, or timer events) without managing infrastructure, and the code is not containerized but written in a supported language (C#, JavaScript, Python, etc.).
Why candidates choose this
Candidates may confuse serverless computing (Azure Functions) with container services, thinking both are 'run without managing VMs,' but they serve different purposes: Functions runs code snippets, not containers.
Analysis generated from the official AZ-900blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”
Quick reference
Cloud Service Model Comparison
| Model | You Manage | Provider Manages | Examples |
|---|---|---|---|
| IaaS | OS, runtime, apps, data | Hardware, hypervisor, networking | EC2, Azure VMs, GCP Compute Engine |
| PaaS | Apps and data | OS, runtime, middleware, hardware | Elastic Beanstalk, Azure App Service |
| SaaS | Data and settings only | Everything else | Microsoft 365, Salesforce, Workday |
| FaaS / Serverless | Function code only | Infra, scaling, runtime | Lambda, Azure Functions, Cloud Run |
| CaaS | Containers and apps | Kubernetes, OS, hardware | EKS, AKS, GKE |
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Last reviewed: Jun 11, 2026
This AZ-900 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the AZ-900 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.