200-901 · Question #539
Why should a code review process be used?
The correct answer is B. It enables a consistent software design. Code review is the practice of having peers examine code before it is merged. Its primary benefit is enforcing consistency - in coding standards, architectural patterns, naming conventions, and design decisions - across a team where multiple developers contribute. Reviews…
Question
Why should a code review process be used?
Options
- AIt enables various software design implementations.
- BIt enables a consistent software design.
- CIt ensures that members of a team work in isolation.
- DIt ensures that whole software is secure.
How the community answered
(23 responses)- A4% (1)
- B91% (21)
- C4% (1)
Explanation
Code review is the practice of having peers examine code before it is merged. Its primary benefit is enforcing consistency - in coding standards, architectural patterns, naming conventions, and design decisions - across a team where multiple developers contribute. Reviews spread knowledge, catch deviations from agreed-upon design patterns, and prevent one-off implementations from fragmenting the codebase. Option A is incorrect - code review actually constrains (not enables) arbitrary design variations. Option C is wrong - reviews promote collaboration, the opposite of isolation. Option D overstates the guarantee; reviews improve security but cannot ensure the entire software is secure.
Topics
Community Discussion
No community discussion yet for this question.