200-901 Exam QuestionsBrowse all questions from this exam

200-901 Exam - Question 292


What is a principle of a code review process?

Show Answer
Correct Answer: C

A principle of a code review process is that naming standards must be consistent. Consistent naming standards help maintain readability and understanding in a codebase by ensuring that everyone uses the same conventions. This aids in maintaining clarity and reducing the likelihood of bugs or confusion. Although other aspects, like timing and approvals, can be important in specific workflows, maintaining consistent naming standards is a foundational principle in improving and maintaining the quality of the code.

Discussion

4 comments
Sign in to comment
Dannyboy7Option: C
Feb 2, 2023

I would pick C

DoctorDoctorOption: C
Feb 2, 2023

I think C

tonkoOption: A
Mar 29, 2023

branch -> develop -> commit -> pull request -> code review -> merge or comment. I think "A" is answer.

81c0313Option: C
Jul 22, 2024

Answer C: Code review really has two purposes: Improving the code. Finding bugs, anticipating possible bugs, checking the clarity of the code, and checking for consistency with the project’s style standards.' Improving the programmer. Code review is an important way that programmers learn and teach each other, about new language features, changes in the design of the project or its coding standards, and new techniques. In open source projects, particularly, much conversation happens in the context of code reviews.