Skip to content

Kubernetes Core Objects Cheat Sheet Practice Exam

Test yourself under real exam conditions: 50 timed questions, 60 on the clock, pass mark 70%%. Instant score with a full review of everything you got wrong. Free — no account needed.

📝 50 questions · ⏱ 60 minutes · 🎯 Pass mark 70% · 🆓 Free, no signup

Exam details

  • 50 questions drawn from 120 cards
  • Countdown timer — auto-submits when time runs out
  • Pass mark 70% (real certification threshold)
  • Full review of wrong answers at the end
  • No signup required — save your score with a free account

Sample Questions

5 shown

What is a Kubernetes Pod?

Show ▼

A Pod is the smallest deployable unit in Kubernetes; it encapsulates one or more tightly coupled containers that share a network namespace, IPC, and optionally volumes.

What does a Pod represent in the Kubernetes object model?

Show ▼

A Pod represents a single instance of a running process in a cluster and is described by a Pod manifest containing metadata (labels, annotations) and a pod spec.

What Kubernetes object directly manages a set of identical Pods?

Show ▼

A ReplicaSet manages a stable set of identical Pods and ensures a specified number of pod replicas are running at any given time.

What controller is most commonly used to deploy stateless workloads in production?

Show ▼

A Deployment, which manages a ReplicaSet and provides declarative updates, rolling updates, and rollback capability.

What is the purpose of a StatefulSet?

Show ▼

A StatefulSet manages the deployment and scaling of a set of Pods with stable, unique network identities and persistent per-pod storage.

🎯 Take the Kubernetes Core Objects Cheat Sheet Practice Exam