KCNA Kubernetes Fundamentals Practice Question
Which TWO of the following are characteristics of a Kubernetes Pod?
⚠ Common exam trap
CNCF often tests the misconception that Pods are long-lived or that they can only run a single container, confusing Pods with virtual machines or containers themselves, while the key exam point is that Pods are the smallest deployable unit and share network namespaces.
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
✓
Pods are the smallest deployable units in Kubernetes
B is correct because Pods are the smallest and most fundamental deployable units in Kubernetes, representing a single instance of a running process in the cluster. A Pod encapsulates one or more containers, storage resources, and a unique network IP, and is the atomic unit of scheduling. This is defined in the Kubernetes core API and is a foundational concept for the KCNA exam.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Pods can only run a single container
Why it's wrong here
Pods can run multiple containers (sidecar pattern).
- ✓
Pods are the smallest deployable units in Kubernetes
Why this is correct
Pods are the atomic unit of scheduling.
- ✓
Containers within a Pod share the same network namespace
Why this is correct
Containers in a pod share IP address and port space.
- ✗
Pods are designed to be long-lived and rarely replaced
Why it's wrong here
Pods are ephemeral and can be terminated and replaced frequently.
- ✗
Pods are typically replicated by a Deployment or ReplicaSet
Why it's wrong here
Pods themselves are not replicated; controllers manage replicas of pods.
Go deeper
Related to this question
Learn chapter
Kubernetes Overview and Core Components
Key term
Container Runtime Interface
The Container Runtime Interface (CRI) is a standardized plugin protocol that allows Kubernetes to work with different container runtimes without needing to change its core code.
Key term
Helm Charts
Helm Charts are packages of pre-configured Kubernetes resources that let you install, upgrade, and manage complex applications on a Kubernetes cluster with a single command.
About these practice questions
Courseiva writes every KCNA question from scratch — 833 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
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.