KCNA Kubernetes Fundamentals Practice Question
Network Topology
Refer to the exhibit. A pod 'my-pod' shows repeated 'BackOff' events after the container starts. Which is the most likely cause?
⚠ Common exam trap
The KCNA exam often tests the distinction between 'ImagePullBackOff' (image not found) and 'CrashLoopBackOff' (container crashes after start), so candidates must recognize that 'BackOff' events after the container starts point to a runtime crash, not a pull failure.
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
✓
The application crashes shortly after starting.
The 'BackOff' event in Kubernetes indicates that the container has started but repeatedly crashes, causing the kubelet to increase the restart delay. Option D is correct because an application that crashes shortly after starting will trigger this restart loop, as the container exits with a non-zero exit code, leading to exponential backoff.
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 image 'myapp:v2' does not exist.
Why it's wrong here
Incorrect; the Pulled event shows the image was pulled successfully.
- ✗
The container exceeds its memory limit.
Why it's wrong here
Incorrect; OOM would show 'OOMKilled' reason.
- ✗
The liveness probe is failing.
Why it's wrong here
Incorrect; liveness failures would generate 'Unhealthy' events, not just BackOff.
- ✓
The application crashes shortly after starting.
Why this is correct
Correct; the container starts but then crashes, leading to restart backoff.
Go deeper
Related to this question
About these practice questions
Courseiva writes every KCNA question from scratch — 833 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or 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.