KCNA Kubernetes Fundamentals Practice Question
Which TWO of the following are characteristics of a Namespace in Kubernetes?
⚠ Common exam trap
CNCF often tests the misconception that Namespaces provide built-in network isolation, but in reality, they only offer logical grouping; network segmentation requires explicit NetworkPolicy resources.
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
✓
Resource names must be unique within a namespace, but can be reused across namespaces
Namespaces in Kubernetes provide a mechanism for logical grouping and scoping of resources. Two key characteristics are: (1) resource names must be unique within a namespace but can be reused across different namespaces (option C), and (2) namespaces allow multiple virtual clusters (logical clusters) within a single physical cluster (option D). While deleting a namespace does delete all its contained objects (option E), this is a consequence of namespace lifecycle management rather than a defining characteristic of what a namespace is. Network isolation is not provided by default; it requires explicit NetworkPolicy resources.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Namespaces are required for all Kubernetes objects
Why it's wrong here
Incorrect. Namespaces are not required for all Kubernetes objects; some objects like nodes and persistent volumes are cluster-scoped and do not belong to a namespace.
- ✗
Namespaces provide network isolation by default
Why it's wrong here
Incorrect. Namespaces do not provide network isolation by default. Network isolation is achieved through NetworkPolicy objects, not namespaces.
- ✓
Resource names must be unique within a namespace, but can be reused across namespaces
Why this is correct
Correct. Kubernetes enforces unique names only within the same namespace. This allows names like 'my-app' to be reused across different namespaces (e.g., dev and prod), providing naming flexibility without collisions.
- ✓
Namespaces allow multiple virtual clusters within a physical cluster
Why this is correct
Correct. Namespaces create separate scopes for resources, effectively allowing multiple virtual clusters within one physical cluster, enabling multi-tenancy and environment separation.
- ✗
Deleting a namespace deletes all objects inside it
Why it's wrong here
While it is true that deleting a namespace deletes all objects inside it, this is a behavior of namespace deletion rather than a fundamental characteristic of namespaces. Since the question asks for two characteristics, options C and D are the primary ones expected.
Go deeper
Related to this question
Learn chapter
Kubernetes Overview and Core Components
Key term
Namespaces
A Namespace in Kubernetes is a virtual cluster within a physical cluster that allows you to organize and isolate resources, like an apartment building with separate units for different tenants.
Key term
ReplicaSet and Replication
A ReplicaSet ensures a specified number of identical pod instances are running at all times in Kubernetes, using replication to maintain availability and stability.
About these practice questions
This KCNA question is part of Courseiva's 833-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam 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.