nerdexam
Linux_Foundation

KCNA · Question #12

Kubernetes supports multiple virtual clusters backed by the same physical cluster. These virtual clusters are called:

The correct answer is A. namespaces. Kubernetes allows for multiple virtual clusters within a single physical cluster, which are known as namespaces.

Submitted by suresh_in· May 4, 2026Kubernetes Fundamentals

Question

Kubernetes supports multiple virtual clusters backed by the same physical cluster. These virtual clusters are called:

Options

  • Anamespaces
  • Bcontainers
  • Chypervisors
  • Dcgroups

How the community answered

(19 responses)
  • A
    89% (17)
  • C
    5% (1)
  • D
    5% (1)

Why each option

Kubernetes allows for multiple virtual clusters within a single physical cluster, which are known as namespaces.

AnamespacesCorrect

Namespaces in Kubernetes provide a mechanism for isolating groups of resources within a single cluster, serving as virtual clusters for different teams or projects. This allows for resource organization and access control, ensuring that resources in one namespace do not directly conflict with resources in another, without requiring separate physical clusters.

Bcontainers

Containers are the isolated environments where applications run, not virtual clusters themselves.

Chypervisors

Hypervisors are used in virtualization to create virtual machines, which is a different concept than Kubernetes virtual clusters.

Dcgroups

cgroups (control groups) are a Linux kernel feature for resource management and isolation for processes, not Kubernetes virtual clusters.

Concept tested: Kubernetes namespaces for resource isolation

Source: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/

Topics

#Kubernetes Namespaces#Virtual Clusters#Multi-tenancy#Resource Isolation

Community Discussion

No community discussion yet for this question.

Full KCNA Practice