CertsPoint
See all results for ""
Home Exams
CRISC ISACA CISSP ISC2 200-301 Cisco SY0-701 CompTIA AZ-104 Microsoft AI-900 Microsoft AIGP IAPP 1Z0-1067-26 Oracle View All Exams →
Sign in Create account

Claude Certified Architect Foundations CCAR-F Exam Questions

Preparing for the CCAR-F exam is simple with CertsPoint. We offer easy-to-understand study materials that help you learn the most important exam topics. You can study using our PDF questions, practice online with a real exam-style test, or use the desktop practice software. Choose the study method that works best for you and prepare at your own pace.

At CertsPoint, we keep our CCAR-F practice questions up to date. Whenever the exam syllabus or objectives change, we update our study materials so you always learn the latest topics. This helps you save time, avoid outdated content, and feel more confident when you take your exam.

Download Exam View Entire Exam
Page: 2 / 4
Question #6 (Topic: Demo Questions)

You are building developer productivity tools using the Claude Agent SDK. The agent helps engineers explore unfamiliar codebases, understand legacy systems, generate boilerplate code, and automate repetitive tasks. It uses the built-in tools (Read, Write, Bash, Grep, Glob) and integrates with Model Context Protocol (MCP) servers.An engineer asks your agent to identify untested code paths in a legacy payment processing module spanning 45 files. After reading the first 8 source files, the agent’s responses are becoming noticeably less accurate—it’s forgetting previously discussed code patterns and hasn’t yet located all test files or traced critical payment flows. What’s the most effective approach to complete this investigation?

A.
Spawn subagents to investigate specific questions (e.g., “find all test files for payment processing,” “trace refund flow dependencies”) while the main agent coordinates findings and preserves high-level understanding.
B.
Clear context with/clear, then selectively re-read only the most critical files discovered so far, writing key findings to a scratchpad file that persists between context resets.
C.
Switch to using Grep to search for specific function names instead of reading full files, reducing the content loaded into context for remaining exploration.
D.
Document all current findings in a summary report, clear context completely, then use that report as the sole reference for continuing the investigation.
Correct Answer: A
Question #7 (Topic: Demo Questions)

You are using Claude Code to accelerate software development. Your team uses it for code generation, refactoring, debugging, and documentation. You need to integrate it into your development workflow with custom slash commands, CLAUDE.md configurations, and understand when to use plan mode vs direct execution. Your team’s CLAUDE.md includes a rule: “Use 4-space indentation and always run Prettier formatting.” Despite this, code reviews reveal that roughly 30% of files Claude Code generates use inconsistent formatting—sometimes 2-space indentation, sometimes missing trailing commas. Adding emphasis (“IMPORTANT: You MUST use Prettier formatting”) reduces violations to about 15%, but doesn’t eliminate them. What is the most effective way to ensure all generated code is consistently formatted?

A.

Extract the formatting rules into a dedicated skill that Claude loads automatically when generating code, with more detailed examples of correct formatting. 

B.

Add a Stop hook with a prompt-based check that evaluates whether generated codefollows formatting standards and prompts Claude to fix violations.

C.

Split the formatting rules into path-scoped.claude/rules/files that load when Claudeworks on matching file types.

D.

Configure a PostToolUse hook with an Edit|Write matcher that automatically runsPrettier on each file Claude modifies.

Correct Answer: D
Question #8 (Topic: Demo Questions)

You are building a customer support resolution agent using the Claude Agent SDK. The agent handles high-ambiguity requests like returns, billing disputes, and account issues. It has access to your backend systems through custom Model Context Protocol (MCP) tools (get_customer,lookup_order,process_refund,escalate_to_human). Your target is 80%+ first-contact resolution while knowing when to escalate. When the agent callslookup_orderand receives order details showing the item was purchased 45 days ago, how does the agentic loop determine whether to callprocess_refundorescalate_to_humannext? 

A.

The agent executes the remaining steps in a tool sequence planned at the start of therequest.

B.

The order details are added to the conversation and the model reasons about whichaction to take.

C.

The orchestration layer automatically routes to the next tool based on the order’s statusfield.

D.

The agent follows a pre-configured decision tree mapping order attributes to specific toolcalls.

Correct Answer: B
Question #9 (Topic: Demo Questions)

You are building a structured data extraction system using Claude. The system extractsinformation from unstructured documents, validates the output using JavaScript Object Notation (JSON) schemas, and maintains high accuracy. It must handle edge cases gracefully and integrate with downstream systems. Testing reveals that when source documents are missing certain specifications, the model fabricates plausible-sounding values to satisfy your schema’s required fields. For example, a document mentioning only dimensions receives a fabricated “weight: 2.3 kg” in the extraction output. What schema design change most effectively addresses this hallucination behavior?  

A.

Add explicit instructions to the prompt stating “only extract information explicitly stated in the document; use placeholder text for missing values.”

B.

Change fields that may not exist in source documents from required to optional, allowing the model to omit them.

C.

Add a “confidence” field alongside each specification where the model self-reports its certainty, then filter out low-confidence extractions. 

D.

Implement semantic validation that verifies each extracted value appears in or can be inferred from the source document text.

Correct Answer: B
Question #10 (Topic: Demo Questions)

You are using Claude Code to accelerate software development. Your team uses it for code generation, refactoring, debugging, and documentation. You need to integrate it into your development workflow with custom slash commands, CLAUDE.md configurations, and understand when to use plan mode vs direct execution. You’ve asked Claude to write a data migration script, but the initial output doesn’t correctly handle records with null values in required fields. What’s the most effective way to iterate toward a working solution? 

A.

Add “think harder about edge cases” to your prompt and request a complete rewrite ofthe migration logic.

B.

Manually edit the generated code to fix the null handling, then continue working withClaude on other parts.

C.

Describe the null value problem in detail and ask Claude to regenerate the entire scriptwith improved edge case handling.

D.

Provide a test case with example input containing null values and the expected output,then ask Claude to fix it.

Next Question
Correct Answer: D