Exam CCAR-F Topic 1 Question 189 Discussion
Actual exam question for Anthropic's CCAR-F exam
Question #: 189
Topic #: 1
Question #: 189
Topic #: 1
You are integrating Claude Code into your Continuous Integration/Continuous Deployment (CI/CD) pipeline. The system runs automated code reviews, generates test cases, and provides feedback on pull requests. You need to design prompts that provide actionable feedback and minimize false positives.
The automated review consistently flags patterns your team uses intentionally--force-unwrapping optionals in test files, using large coordinator classes that follow your established architecture, and importing internally maintained modules marked as deprecated in the public SDK.
Developers dismiss approximately 30% of all findings as project-specific false positives.
Which approach prevents the model from generating these findings in the first place by supplying the project's conventions as persistent context during every review?
The automated review consistently flags patterns your team uses intentionally--force-unwrapping optionals in test files, using large coordinator classes that follow your established architecture, and importing internally maintained modules marked as deprecated in the public SDK.
Developers dismiss approximately 30% of all findings as project-specific false positives.
Which approach prevents the model from generating these findings in the first place by supplying the project's conventions as persistent context during every review?
Suggested Answer: A Vote an answer
Option A supplies the missing project context before Claude evaluates the code. Anthropic's CLAUDE.md documentation defines project-level files as persistent, version-controlled instructions for coding standards, architecture, workflows, and conventions. The described exceptions are stable repository facts: force-unwrapping is permitted in tests, coordinator classes follow an intentional pattern, and an internally maintained dependency remains approved despite its public deprecation status. Recording these facts concisely allows every review session to interpret the patterns correctly.
by August at Aug 26, 2026, 05:55 AM
0
0
0
10
Comments
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Report Comment
Commenting
You can sign-up / login (it's free).