CKAD Application Observability and Maintenance Practice Question
This CKAD practice question tests your understanding of application observability and maintenance. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Refer to the exhibit.
```
kubectl get pods -n production
NAME READY STATUS RESTARTS AGE
app-backend-6b4c9d8f7-2x4z5 0/1 CrashLoopBackOff 5 3m
app-backend-6b4c9d8f7-7y8u9 1/1 Running 0 5m
app-frontend-5f6a7b8c9d-1a2b3 1/1 Running 0 10m
```
Refer to the exhibit. A pod named 'app-backend-6b4c9d8f7-2x4z5' is in CrashLoopBackOff state. What is the MOST likely cause of this issue?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue: "most likely"
Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
Refer to the exhibit.
```
kubectl get pods -n production
NAME READY STATUS RESTARTS AGE
app-backend-6b4c9d8f7-2x4z5 0/1 CrashLoopBackOff 5 3m
app-backend-6b4c9d8f7-7y8u9 1/1 Running 0 5m
app-frontend-5f6a7b8c9d-1a2b3 1/1 Running 0 10m
```
A
The container is crashing due to a misconfiguration or application error.
CrashLoopBackOff indicates repeated crashes, often from configuration or code issues.
B
The container has exceeded its memory limit and is being OOMKilled.
Why wrong: OOMKill would show 'OOMKilled' in status, not necessarily CrashLoopBackOff.
C
The node running the pod is down, preventing the container from starting.
Why wrong: If the node were down, the pod would be in 'Pending' or 'Unknown' state, not CrashLoopBackOff.
D
A network policy is blocking the container from accessing required services.
Why wrong: Network policies do not cause container crashes; they affect network connectivity.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The container is crashing due to a misconfiguration or application error.
A CrashLoopBackOff state indicates that the container in the pod is repeatedly crashing and being restarted by the kubelet. The most common cause is a misconfiguration (e.g., incorrect environment variables, missing dependencies, or a faulty entrypoint script) or an application error (e.g., a runtime exception or panic). The kubelet detects the crash via the container runtime (e.g., containerd) and applies an exponential backoff delay before restarting, leading to the CrashLoopBackOff status.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✓
The container is crashing due to a misconfiguration or application error.
Why this is correct
CrashLoopBackOff indicates repeated crashes, often from configuration or code issues.
Clue confirmation
The clue word "most likely" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
✗
The container has exceeded its memory limit and is being OOMKilled.
Why it's wrong here
OOMKill would show 'OOMKilled' in status, not necessarily CrashLoopBackOff.
✗
The node running the pod is down, preventing the container from starting.
Why it's wrong here
If the node were down, the pod would be in 'Pending' or 'Unknown' state, not CrashLoopBackOff.
✗
A network policy is blocking the container from accessing required services.
Why it's wrong here
Network policies do not cause container crashes; they affect network connectivity.
Common exam traps
Common exam trap: answer the scenario, not the keyword
CNCF often tests the distinction between CrashLoopBackOff and other pod failure states like OOMKilled or ImagePullBackOff, and the trap here is that candidates may assume any crash is due to resource limits or network issues without checking the specific exit code or pod events.
Trap categories for this question
Command / output trap
OOMKill would show 'OOMKilled' in status, not necessarily CrashLoopBackOff.
Detailed technical explanation
How to think about this question
Under the hood, the kubelet monitors container exit codes via the container runtime's API (e.g., CRI). A non-zero exit code triggers a restart, and the backoff duration doubles each time (starting at 10s, up to 5 minutes) until the container stays up for more than 10 minutes. This mechanism is defined in the Kubernetes source code (pkg/kubelet/kuberuntime/kuberuntime_manager.go). In real-world scenarios, a common subtle cause is a missing configmap or secret that the application expects at startup, causing it to crash before it can log a meaningful error.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A practitioner preparing for the CKAD exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.
Related glossary terms
Concepts from this question explained
These glossary pages explain the core terms tested in this CKAD question in full detail.
Application Observability and Maintenance — This question tests Application Observability and Maintenance — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: The container is crashing due to a misconfiguration or application error. — A CrashLoopBackOff state indicates that the container in the pod is repeatedly crashing and being restarted by the kubelet. The most common cause is a misconfiguration (e.g., incorrect environment variables, missing dependencies, or a faulty entrypoint script) or an application error (e.g., a runtime exception or panic). The kubelet detects the crash via the container runtime (e.g., containerd) and applies an exponential backoff delay before restarting, leading to the CrashLoopBackOff status.
What should I do if I get this CKAD question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This CKAD 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 CKAD exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.