200-901 · Question #424
200-901 Question #424: Real Exam Question with Answer & Explanation
The correct answer is C: It encourages repeatable processes.. {"question_number": 8, "question": "What is a principle of Infrastructure as Code?", "correct_answer": "C. It encourages repeatable processes.", "explanation": "Infrastructure as Code (IaC) is the practice of managing and provisioning infrastructure through machine-readable confi
Question
What is a principle of Infrastructure as Code?
Options
- AIt requires manual resource provisioning.
- BIt encourages overlaps in services.
- CIt encourages repeatable processes.
- DIt requires the use of large components.
Explanation
{"question_number": 8, "question": "What is a principle of Infrastructure as Code?", "correct_answer": "C. It encourages repeatable processes.", "explanation": "Infrastructure as Code (IaC) is the practice of managing and provisioning infrastructure through machine-readable configuration files rather than manual processes. A core principle is repeatability (and idempotency): the same code, run multiple times, produces the same infrastructure state consistently. This eliminates configuration drift and allows environments (dev, staging, prod) to be reliably reproduced. Option A is incorrect - IaC replaces manual provisioning with automation. Option B is incorrect - IaC promotes single-responsibility and DRY (Don't Repeat Yourself) principles, avoiding service overlaps. Option D is incorrect - IaC favors modular, composable components, not large monolithic ones.", "generated_by": "claude-sonnet", "llm_judge_score": 4}
Topics
Community Discussion
No community discussion yet for this question.