CV0-004 · Question #293
CV0-004 Question #293: Real Exam Question with Answer & Explanation
The correct answer is C: Container image. {"question_number": 5, "correct_answer": "C", "explanation": "Container images facilitate continuous deployment without a clean install because Docker/OCI image layers are cached. When a new version is deployed, only the changed layers are pulled - not the entire OS, runtime, and
Question
Which of the following facilitates the continuous deployment of cloud applications without performing a clean install on each iteration?
Options
- ADebian package
- BVersion management
- CContainer image
- DBare-metal server
Explanation
{"question_number": 5, "correct_answer": "C", "explanation": "Container images facilitate continuous deployment without a clean install because Docker/OCI image layers are cached. When a new version is deployed, only the changed layers are pulled - not the entire OS, runtime, and dependencies each time. This makes deployments fast and incremental. Debian packages require package manager operations that can interfere with existing installations and don't inherently support rolling updates. Version management (e.g., Git) handles source code, not deployment. Bare-metal servers require full OS reinstallation or in-place upgrades that are far more disruptive.", "generated_by": "claude-sonnet", "llm_judge_score": 4}
Topics
Community Discussion
No community discussion yet for this question.