Question 791 of 997
Container OrchestrationhardMultiple SelectObjective-mapped

Benefits of Container Orchestration with Kubernetes

This KCNA practice question tests your understanding of container orchestration. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

Which THREE of the following are benefits of using a container orchestration platform like Kubernetes? (Select three.)

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

Declarative management: specify desired state and let the system converge

Option B is correct because Kubernetes uses a declarative management model where you define the desired state of your application (e.g., number of replicas, resource limits) in a YAML or JSON manifest, and the control plane continuously works to converge the actual state to that desired state. This is a core principle of Kubernetes, implemented via controllers like the ReplicaSet controller, which ensures the system is always self-healing and consistent without manual intervention.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Built-in image building and registry

    Why it's wrong here

    Kubernetes does not build images or include a registry; those are external tools.

  • Declarative management: specify desired state and let the system converge

    Why this is correct

    Kubernetes uses a declarative model where you define the desired state and controllers work to achieve it.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Faster application startup times

    Why it's wrong here

    Faster startup is a benefit of containers vs VMs, not specifically orchestration.

  • Automatic scaling of applications based on demand

    Why this is correct

    Horizontal Pod Autoscaler automatically scales replicas based on metrics.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Self-healing: automatic restart of failed containers

    Why this is correct

    Kubernetes automatically restarts containers that fail, as part of its self-healing capability.

    Related concept

    Read the scenario before looking for a memorised answer.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The KCSA exam often tests the misconception that Kubernetes provides built-in CI/CD features like image building or that it accelerates application startup, when in reality Kubernetes focuses on orchestration, scaling, and self-healing, leaving image management and performance optimization to external tools and the application itself.

Detailed technical explanation

How to think about this question

Under the hood, Kubernetes controllers (e.g., Deployment controller, StatefulSet controller) use a reconciliation loop that continuously compares the observed state (from the API server and etcd) with the desired state in the manifest, triggering actions like creating or deleting Pods via the kubelet. A subtle behavior is that Kubernetes does not guarantee immediate convergence; it uses exponential backoff and rate limiting to avoid thundering herd problems, which can cause delays in scaling or self-healing in large clusters. In a real-world scenario, if a node fails, the controller detects the missing Pods and reschedules them on healthy nodes, but the time to restart depends on image pull latency and resource availability, not on Kubernetes itself speeding up the application.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A practitioner preparing for the KCNA exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related KCNA practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free KCNA practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this KCNA question test?

Container Orchestration — This question tests Container Orchestration — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Declarative management: specify desired state and let the system converge — Option B is correct because Kubernetes uses a declarative management model where you define the desired state of your application (e.g., number of replicas, resource limits) in a YAML or JSON manifest, and the control plane continuously works to converge the actual state to that desired state. This is a core principle of Kubernetes, implemented via controllers like the ReplicaSet controller, which ensures the system is always self-healing and consistent without manual intervention.

What should I do if I get this KCNA question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

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 →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

6 more ways this is tested on KCNA

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. Which TWO of the following are benefits of using a container orchestration platform like Kubernetes? (Select 2)

medium
  • A.Single-node deployment for simplicity
  • B.Manual scaling of applications
  • C.Automated scaling based on demand
  • D.Elimination of all application bugs
  • E.High availability through automated failover

Why C: Option C is correct because Kubernetes includes a Horizontal Pod Autoscaler (HPA) that automatically adjusts the number of pod replicas based on observed CPU, memory, or custom metrics. This enables applications to scale out during traffic spikes and scale in during low demand, improving resource utilization and responsiveness without manual intervention.

Variation 2. Which TWO of the following are benefits of using a container orchestration platform like Kubernetes? (Select 2)

medium
  • A.Manual deployment of containers to servers
  • B.Requirement for a hypervisor on every node
  • C.Self-healing of failed containers
  • D.Static infrastructure that never changes
  • E.Automatic scaling of applications based on demand

Why C: Option C is correct because Kubernetes includes a built-in controller loop that continuously monitors the desired state of workloads. If a container or pod fails, the ReplicaSet or StatefulSet controller automatically replaces it by rescheduling a new pod, ensuring application availability without manual intervention.

Variation 3. Which TWO of the following are benefits of container orchestration?

medium
  • A.Ability to run containers without a kernel
  • B.Manual scaling of containers
  • C.High availability through self-healing
  • D.Automated scaling based on demand
  • E.Simplified network configuration for each container

Why C: Option C is correct because container orchestration platforms like Kubernetes implement self-healing mechanisms through controllers such as ReplicaSets and StatefulSets. These controllers continuously monitor the desired state of pods and automatically restart, reschedule, or replace containers that fail, crash, or become unresponsive, ensuring high availability without manual intervention.

Variation 4. Which TWO are benefits of using a container orchestration platform like Kubernetes? (Select TWO.)

easy
  • A.Increases application complexity
  • B.Requires a dedicated hypervisor for each container
  • C.Automatic service discovery and load balancing
  • D.Self-healing (automatic restart of failed containers)
  • E.Manual scaling of applications

Why C: Option C is correct because Kubernetes includes built-in service discovery and load balancing. Services in Kubernetes get a stable virtual IP and DNS name, and kube-proxy implements load balancing across pods using iptables or IPVS rules, distributing traffic without manual configuration.

Variation 5. Which THREE are benefits of using container orchestration platforms like Kubernetes?

medium
  • A.High availability through automatic container restart and replication
  • B.Automatic scaling of container replicas based on resource usage
  • C.Self-healing by replacing failed containers without manual intervention
  • D.Simplified application development by eliminating the need for code changes
  • E.Elimination of the need for monitoring and logging

Why A: Option A is correct because Kubernetes provides high availability by automatically restarting containers that fail and replicating pods across multiple nodes. This ensures that if a container crashes, the ReplicaSet controller creates a new pod to maintain the desired number of replicas, minimizing downtime without manual intervention.

Variation 6. Which THREE are benefits of using a container orchestration platform? (Select 3)

medium
  • A.Guarantees zero downtime during deployments
  • B.Declarative configuration management
  • C.Automated scaling based on demand
  • D.Eliminates the need for cloud infrastructure
  • E.High availability through automatic failover

Why B: Options B, C, and E are correct. Declarative configuration management (B) allows you to define the desired state and the platform ensures it. Automated scaling based on demand (C) adjusts resources automatically. High availability through automatic failover (E) ensures minimal downtime. Option A is incorrect—orchestration does not guarantee zero downtime. Option D is incorrect—orchestration does not eliminate the need for infrastructure.

Keep practising

More KCNA practice questions

Last reviewed: Jul 4, 2026

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.

Loading comments…

Sign in to join the discussion.

This KCNA practice question is part of Courseiva's free CNCF 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 KCNA exam.