Quiz
This quiz will test your understanding of basic Kubernetes concepts, commands, and architecture.
Question 1
What command is used to view the status of pods in a Kubernetes cluster?
Select one answer
kubectl list pods
kubectl get pods
kubectl show pods
kubectl describe cluster
Question 2
Kubernetes is a container orchestration platform.
Select one answer
true
false
Question 3
What is the default namespace in Kubernetes if none is specified?
Type your answer below
Question 4
Which of the following are valid Kubernetes resource types?
Select all that apply
Pod
Service
Container
Deployment
Question 5
Which controller ensures that the specified number of pod replicas are running at all times?
Select one answer
Deployment
Service
Namespace
ReplicaSet
Question 6
StatefulSets are used to manage stateless applications. (true/false)
Type your answer below
Question 7
What type of Kubernetes object exposes a set of pods as a network service?
Select one answer
Deployment
ReplicaSet
Service
ConfigMap
Question 8
Which kubectl command is used to create resources from a configuration file?
Type your answer below
Question 9
Which of the following are use cases for ConfigMaps?
Select all that apply
Storing container logs
Storing configuration data
Injecting environment variables into Pods
Scaling deployments
Question 10
Which type of Kubernetes volume is used to persist data even after pod restarts?
Select one answer
emptyDir
hostPath
persistentVolumeClaim
configMap
close