Claude Certified Architect Foundations (CCAR-F) Practice Test
Find your weakest domain in 25 questions. Then train on 10 full-length, 120-minute exams, each built on 4 of the 6 official scenarios, task statement by task statement from Anthropic's exam guide.
- Questions
- 60
- Time
- 120 min
- Pass mark
- 720/ 1,000
- Exam fee
- $125
By PrepClubs Editorial Team, updated September 26, 2026. Exam facts from Anthropic's official exam guide, v1.0.
Scenario: Customer Support Resolution Agent. Your support agent escalates refund disputes to a single human dispute team. Each payload carries customer_id, refund_amount, recommended_action, and an attempted_actions list that records every tool call and its outcome. Humans have stopped retrying failed refunds. The human console renders only structured payload fields and does not display attachments. Reviews show one remaining delay. Before approving the agent's recommended partial refund, humans reopen the order history and shipping records to work out why the agent chose a partial amount rather than a full refund. Which change best addresses this?
- Agentic Architecture & Orchestration16
- Tool Design & MCP Integration11
- Claude Code Configuration & Workflows12
- Prompt Engineering & Structured Output12
- Context Management & Reliability9
CCAR-F at a glance
Exam facts here come from Anthropic's own exam guide, version 1.0, effective July 2026, and its Partner Academy certification FAQ. The exam is for solution architects who build production systems with the Claude Agent SDK, Claude Code, the Claude API and MCP, and it tests the tradeoffs, not the syntax.
Who it is for
- Solution architects who design and ship production applications on Claude
- Engineers who build agents with the Claude Agent SDK: loops, subagents, hooks and tools
- Leads who configure Claude Code for a team and run it in CI/CD
Who it is not for
- Business users who work in Claude without code: the Associate exam (CCAO-F) covers that work
- Architects who lead enterprise deployments, governance and stakeholder work: that is the Professional level (CCAR-P)
- Credential
- Claude Certified Architect - Foundations
- Exam code
- CCAR-F
- Questions
- 60 items
- Question types
- Multiple choice and multiple response. Each multiple-response item tells you how many options to select.
- Structure
- 4 scenarios drawn at random from a published bank of 6
- Time limit
- 120 minutes, 2 minutes per item
- Passing score
- Scaled 720 on a 100 to 1,000 scale
- Delivery
- Proctored by Pearson VUE, online or at a test center
- Exam fee
- $125 USD per attempt. The checkout fee reflects any partner-tier discount.
- Validity
- 12 months. On-time renewal is a free, non-proctored assessment on the Anthropic Partner Academy.
- Score report
- Pass or fail, the scaled score, and percent correct by domain
- Recommended experience
- 6 months or more building with the Claude API, Agent SDK, Claude Code and MCP
- Eligibility
- Currently open only to people at Claude Partner Network organizations. You register with a company email address and must be 18 or older.
- Language
- English only
Five domains and six scenarios, turned into the questions you will actually face
Anthropic publishes a weight for each domain. On a 60-item exam that means about 16 questions on Agentic Architecture and Orchestration and about 9 on Context Management and Reliability. Every PrepClubs exam is built to these counts, give or take one. Below the grid are the 30 task statements the items are written against, then the six scenarios the exam draws from.
60 squares, one per question. Tap a domain to light up its share.
What each domain asks you to do
Agentic Architecture & Orchestration
- 1.1 Design and implement agentic loops for autonomous task execution
- 1.2 Orchestrate multi-agent systems with coordinator-subagent patterns
- 1.3 Configure subagent invocation, context passing and spawning
- 1.4 Implement multi-step workflows with enforcement and handoff patterns
- 1.5 Apply Agent SDK hooks for tool call interception and data normalization
- 1.6 Design task decomposition strategies for complex workflows
- 1.7 Manage session state, resumption and forking
Tool Design & MCP Integration
- 2.1 Design tool interfaces with clear descriptions and boundaries
- 2.2 Implement structured error responses for MCP tools
- 2.3 Distribute tools across agents and configure tool choice
- 2.4 Integrate MCP servers into Claude Code and agent workflows
- 2.5 Select and apply the built-in tools: Read, Write, Edit, Bash, Grep, Glob
Claude Code Configuration & Workflows
- 3.1 Configure CLAUDE.md files with the right hierarchy, scoping and modular organization
- 3.2 Create and configure custom slash commands and skills
- 3.3 Apply path-specific rules for conditional convention loading
- 3.4 Decide between plan mode and direct execution
- 3.5 Apply iterative refinement techniques for progressive improvement
- 3.6 Integrate Claude Code into CI/CD pipelines
Prompt Engineering & Structured Output
- 4.1 Design prompts with explicit criteria to improve precision and reduce false positives
- 4.2 Apply few-shot prompting to improve output consistency and quality
- 4.3 Enforce structured output using tool use and JSON schemas
- 4.4 Implement validation, retry and feedback loops for extraction quality
- 4.5 Design efficient batch processing strategies
- 4.6 Design multi-instance and multi-pass review architectures
Context Management & Reliability
- 5.1 Manage conversation context to preserve critical information across long interactions
- 5.2 Design escalation and ambiguity resolution patterns
- 5.3 Implement error propagation strategies across multi-agent systems
- 5.4 Manage context in large codebase exploration
- 5.5 Design human review workflows and confidence calibration
- 5.6 Preserve information provenance and handle uncertainty in multi-source synthesis
The six scenarios the exam draws from
Every CCAR-F exam presents 4 of these 6 production scenarios, picked at random, and frames its questions inside them. Every PrepClubs exam does the same: 4 scenarios, 15 questions each.
Customer Support Resolution Agent
An Agent SDK agent handles returns, billing disputes and account issues through custom MCP tools, aiming for 80 percent first-contact resolution while knowing when to escalate.
Mostly tests: Agentic Architecture, Tool Design and MCP, Context Management
Code Generation with Claude Code
A team uses Claude Code for generation, refactoring, debugging and docs, with custom slash commands, CLAUDE.md configuration and a choice between plan mode and direct execution.
Mostly tests: Claude Code Configuration, Context Management
Multi-Agent Research System
A coordinator delegates to subagents that search the web, analyze documents, synthesize findings and write cited reports.
Mostly tests: Agentic Architecture, Tool Design and MCP, Context Management
Developer Productivity with Claude
An Agent SDK tool helps engineers explore unfamiliar codebases and legacy systems, generate boilerplate and automate chores with the built-in tools and MCP servers.
Mostly tests: Tool Design and MCP, Claude Code Configuration, Agentic Architecture
Claude Code for Continuous Integration
Claude Code runs in the CI/CD pipeline for automated code review, test generation and pull request feedback that has to be actionable and low on false positives.
Mostly tests: Claude Code Configuration, Prompt Engineering and Structured Output
Structured Data Extraction
Claude extracts fields from unstructured documents, validates them against JSON schemas and feeds downstream systems, handling edge cases without inventing values.
Mostly tests: Prompt Engineering and Structured Output, Context Management
Three CCAR-F style practice questions
Scenario-based items in the shapes the exam uses, including one Select TWO. Answer, then check: each explanation names the Anthropic page or guide task statement it relies on.
Scenario: Claude Code for Continuous Integration. A 35-person insurtech runs Claude Code in CI to generate unit tests for its claims modules:
1- name: Generate tests2 run: claude -p "Add tests for the new function in $MODULE" > out.txt3- name: Open PR4 run: python scripts/split_tests.py out.txtThe project CLAUDE.md already documents the shared fixture factories and the one-behavior-per-test rule. The existing test file is supplied, and reviewers say the tests follow conventions and rarely duplicate covered scenarios. The PR step still fails on about a third of runs. split_tests.py cannot reliably find each test's target path and code, because Claude sometimes adds explanatory prose or varies its markdown fences. What should the team change?
Scenario: Structured Data Extraction. A patent extraction pipeline uses a tool whose input_schema defines claim_type as an enum of 'independent' and 'dependent'. After a new jurisdiction was added, reviewers found that multiple dependent claims, which reference more than one prior claim, are being labeled 'dependent'. Logs show that every response already arrives as a tool_use block and passes JSON Schema validation, with zero parse or validation errors. Each affected claim is clearly present and classifiable in the source text. The team also expects future jurisdictions to introduce claim categories nobody has catalogued yet. Which TWO schema changes address this? (Select TWO.)
Scenario: Structured Data Extraction. An invoice extraction pipeline auto-approves any field whose confidence score exceeds a threshold and routes the remaining fields to human reviewers. Last month the team calibrated that threshold against a labeled validation set. Accuracy broken down by vendor document type and by field met target in every segment, so the review team was reduced to handling only routed fields. An auditor now asks how the team will detect new error patterns among auto-approved fields as vendors change their invoice layouts over the coming year. What should the team add?
Six architecture calls the exam expects you to get right
Each of these is stated in Anthropic's exam guide, and each is a place where the intuitive answer is the wrong one.
- 1
When a rule must hold every time, a prompt is not enough.
Prompt instructions have a non-zero failure rate. Identity checks before a refund belong in a programmatic prerequisite or a hook that blocks the call.
- 2
Subagents do not inherit the coordinator's context.
Whatever a subagent needs, including earlier findings and their sources, has to be passed in its prompt.
- 3
A user-level CLAUDE.md is invisible to your teammates.
Instructions in ~/.claude/CLAUDE.md apply only to you. Team conventions go in the project CLAUDE.md or .claude/rules/, which travel with the repository.
- 4
A strict schema stops syntax errors, not wrong answers.
Tool use with a JSON schema guarantees parseable output, but line items that do not sum to the total still get through. Semantic checks and nullable fields are separate work.
- 5
The Batches API is for work that can wait.
It halves the cost but can take up to 24 hours with no latency guarantee, so a blocking pre-merge check stays on the synchronous API.
- 6
Self-reported confidence and sentiment are poor escalation triggers.
Escalate on explicit criteria: the customer asks for a human, the policy is silent or ambiguous, or the agent cannot make progress.
What you get
60 questions and a 120-minute timer each, the real exam's length and pace.
600 across the paid exams plus the 25-question free diagnostic. No dumps, no recycled items.
Each exam is framed in 4 of the 6 published scenarios, 15 questions each, like the real one.
Every exam lands within one question of the official weight for each domain.
- Select TWO items with five options, each stating how many to pick, as the real exam states the count
- Config and code excerpts to judge: CLAUDE.md, rules frontmatter, SKILL.md, .mcp.json, tool schemas, agent loops
- An explanation for every answer that says why each wrong option is wrong
- Every explanation ends with the Anthropic docs page or guide task statement it rests on
- One-time payment, 30-day access, Money-back Guarantee*
10 exams, 600 questions, 30 days of access. No subscription, no auto-renew. Backed by our Money-back Guarantee*.
Built to fix what practice banks usually get wrong
Before writing a single question we measured the practice banks candidates already use against Anthropic's blueprint and the sample items in its guide. These are the problems we designed out.
Before release, two independent reviewers answered every question blind, without our answer key, and every question we ship matches both. We also hid the questions and showed a model only the answer options: it still picked the right answer on 148 of 160 items from a best-selling CCAR-F practice bank. On ours it manages about 3 in 10, close to the 1 in 4 of pure guessing, so the scenario, not the wording, decides.
Wrong options that sound right
Candidates who passed report that the real exam leaves two close options, while weak banks let you rule out three at a glance. Here every wrong option is a real pattern that fails on one detail: a prompt where a hook is needed, a retry where the data is missing, a batch job on a blocking path.
The real exam's structure
Every exam uses 4 of the 6 official scenarios with 15 questions each, so you practise switching between a support agent, a CI reviewer and an extraction pipeline the way the exam makes you.
Select TWO, with five options
The guide says the exam mixes multiple choice with multiple response. Our multiple-response items give five options, ask for two and say so, scored all or nothing.
No answer-shape tells
Options are written to a similar length and form, and answer positions are balanced across every exam, so the longest or most careful-sounding option is not a shortcut to the key.
Config you have to read
About a quarter of the questions put a CLAUDE.md, a rules file, SKILL.md frontmatter, an .mcp.json, a tool schema or an agent loop in front of you and ask what it does or what to change.
Checked against the guide and current docs
Every key was checked against the exam guide's task statements and Anthropic's docs in September 2026, and a second reviewer answered every question blind before it shipped.
How CCAR-F scoring works
The exam is criterion referenced: you are measured against a fixed standard, not against other candidates. Anthropic set the cut score of 720 on a 100 to 1,000 scale through a formal standard-setting study, and scaled scoring equates forms of slightly different difficulty, so a scaled 720 is not the same thing as 72 percent correct.
Your score report shows pass or fail, the scaled score, and your percent correct in each of the five domains. Those domain percentages guide your study; the pass decision rests only on the total scaled score. Agentic Architecture and Orchestration alone is more than a quarter of the exam.
Multiple-response items tell you how many options to pick. Anthropic does not say whether they give partial credit, so our practice exams score them all or nothing, the stricter assumption. If you clear our exams comfortably under that rule, partial credit can only help you.
Every exam ends with a domain breakdown
- +Agentic Architecture & Orchestration81%
- -Tool Design & MCP Integration55%
- +Claude Code Configuration & Workflows83%
- +Prompt Engineering & Structured Output83%
- +Context Management & Reliability78%
Percent correct per domain, like Anthropic's own score report, plus the explanation and docs reference for each miss.
Which Claude certification is right for you?
Anthropic runs four role-based credentials. Figures are from each exam's official guide and the Partner Academy certification FAQ.
Associate
You use Claude every day for business work: drafting, research, analysis, Projects and connectors. You do not write code.
Developer
You build with the Claude API, Claude Code and MCP, and ship apps and agents. You write the code.
Architect
You design production systems on the Agent SDK, Claude Code, the API and MCP, and own the tradeoffs: orchestration, tools, configuration, structured output and reliability. This page prepares you for this exam.
Architect Professional
You lead enterprise Claude deployments end to end: integration, evaluation, governance and compliance, and the conversation with stakeholders.
| Associate | Developer | Architect | Architect Professional | |
|---|---|---|---|---|
| Exam code | CCAO-F | CCDV-F | CCAR-F | CCAR-P |
| Built for | Business professionals using Claude day to day, no coding needed | Engineers shipping apps and agents on the API, Claude Code and MCP | Solution architects designing production Claude systems | Experienced architects leading enterprise deployments |
| Questions | 60 | 53 | 60 | 63 |
| Time | 120 min | 120 min | 120 min | 120 min |
| Pass mark | 720 / 1,000 | 720 / 1,000 | 720 / 1,000 | 720 / 1,000 |
| Fee | $99 | $125 | $125 | $175 |
All four are proctored by Pearson VUE and valid for 12 months. Foundations tests how you build production Claude systems; Professional tests how you run them inside an enterprise.
How to prepare for the Claude Certified Architect Foundations exam
4-week plan
About 5 hours a week, for engineers who build with Claude but not across the whole stack.
- Week 1
Take the free diagnostic. Read the exam guide in full, including the six scenarios and the out-of-scope list, and mark each of the 30 task statements you could not do today. Build a small agent with a real loop: check stop_reason, run tools, append results.
- Week 2
Agentic architecture, the biggest domain: coordinators and subagents, explicit context passing, hooks that block or normalize, decomposition and sessions. Sit exams 1 to 3 under the timer and log every miss by domain.
- Week 3
Configure Claude Code for a real repository: project CLAUDE.md, .claude/rules with paths globs, a skill with context: fork, a project .mcp.json, and a claude -p run with JSON output. Sit exams 4 to 6.
- Week 4
Structured extraction with tool use and nullable fields, validation retries, the Batches API, escalation and provenance. Sit exams 7 to 10, re-read the explanation for every miss, and book once two exams in a row clear 80 percent.
2-week sprint
About 10 hours a week, for engineers already shipping on the Agent SDK and Claude Code.
- Days 1 to 3
Free diagnostic, then your two weakest domains. Re-read their task statements in the guide line by line: the "Skills in" bullets are close to how the items are framed.
- Days 4 to 8
One timed exam a day (exams 1 to 5). Review every miss the same evening and open the doc page it points to.
- Days 9 to 12
Exams 6 to 9, then a focused pass on Select TWO items, where one wrong pick costs the whole item on our scoring.
- Days 13 to 14
Exam 10 as a dress rehearsal at your real exam time of day. Check ID, room and system requirements for online proctoring.
Pearson VUE exam-day checklist
The rules below are from sections 11 to 14 of Anthropic's exam guide. Read them before you book: a wrong ID or a phone on the desk costs you the $125 fee.
What ID do I need?
A valid, unexpired, government-issued photo ID. The name must match your registration exactly; to correct it, contact [email protected] before you schedule.
What can be on my desk?
Nothing. No notes, books, phones, smart watches, headphones, second monitors or recording devices. If testing online you must stay in view of the webcam for the whole session. Any permitted scratch paper is specified by Pearson VUE.
Can I reschedule?
Yes, up to 48 hours before your appointment, per Anthropic's current certification FAQ (the exam guide still says 24). Changes inside 48 hours forfeit the fee, and a no-show or late arrival past the permitted window also forfeits it.
What if I do not pass?
You can retake after a waiting period: 14 days after the first attempt, 30 after the second, 90 after the third. You can sit the exam up to four times in a rolling 12 months, and each attempt costs the full fee.
What do I agree to before starting?
A confidentiality and non-disclosure agreement: all exam content, including the scenarios as they appear on the exam, is Anthropic's confidential property. Disclosing it can void your result, revoke the credential and ban you from future exams.
Can I get accommodations?
Yes, for documented needs. Request them through Pearson VUE and wait for approval before you schedule.
Claude Certified Architect FAQs
Can I take the Claude Certified Architect exam as an individual?
Not on your own at the moment. Anthropic's certification FAQ says certification is currently available only to organizations in the Claude Partner Network, and registration needs a partner email address on a recognized company domain. The usual route is through your employer.
What is the Claude Certified Architect Foundations certification?
Claude Certified Architect - Foundations (exam code CCAR-F, sometimes written CCA-F) is Anthropic's proctored credential for solution architects who design and implement production applications with Claude. It covers the Claude Agent SDK, Claude Code, the Claude API and the Model Context Protocol, and tests practical judgment about architecture, configuration and tradeoffs.
How many questions are on the CCAR-F exam, and how long is it?
60 questions in 120 minutes, a mix of multiple choice and multiple response. The exam presents 4 scenarios picked at random from a published bank of 6 and frames its questions inside them.
What is the passing score for CCAR-F?
A scaled score of 720 on a 100 to 1,000 scale. The scale is set by a standard-setting study, so 720 is not the same as 72 percent correct.
How much does the Claude Certified Architect exam cost?
The exam fee is $125 USD per attempt, paid through the Anthropic Partner Academy. The fee shown at checkout reflects any discount your partner tier qualifies for, and each retake costs the full fee again.
What are the six CCAR-F scenarios?
Customer Support Resolution Agent, Code Generation with Claude Code, Multi-Agent Research System, Developer Productivity with Claude, Claude Code for Continuous Integration, and Structured Data Extraction. Each exam uses 4 of them, so prepare for all 6.
How difficult is the Claude Certified Architect Foundations exam?
It is aimed at builders with 6 months or more of hands-on Claude API, Agent SDK, Claude Code and MCP work, and every item asks for a judgment call in a production scenario. Candidates who passed often say the last two options are close. Agentic Architecture and Orchestration is the largest domain at 27 percent.
How long should I study for CCAR-F?
Most working Claude builders need 2 to 4 weeks. Take the free diagnostic first: if you score well across domains, the 2-week sprint above is enough; if two or more domains are weak, use the 4-week plan.
What is the difference between CCAR-F and CCAR-P?
Foundations (60 items, $125) tests how you build production Claude systems: agent loops, subagents, tools and MCP, Claude Code configuration, structured output and context management. Professional (63 items, $175) is aimed at senior architects and adds enterprise integration, evaluation, governance and compliance, and stakeholder communication.
How long is the certification valid?
12 months from the date it is awarded. On-time renewal is a free, non-proctored assessment; if it lapses you retake the full exam at the full fee.
Are these real CCAR-F exam questions?
No. Every candidate signs a non-disclosure agreement and real items are Anthropic's confidential property. Our questions are original, written from Anthropic's published exam guide and documentation, and we never use dumps or recalled items.
What do I get if I buy the full bank?
Ten full-length timed exams of 60 questions (600 questions), each built on 4 of the 6 official scenarios and weighted to the official blueprint, with an explanation and a docs reference for every answer and a domain scorecard after every exam. It is $69 one time, not a subscription, with 30 days of access and our Money-back Guarantee*.
Is PrepClubs affiliated with Anthropic?
No. PrepClubs is an independent practice-test provider. Claude and Anthropic are trademarks of Anthropic, PBC, used here only to describe the exam.
* See the Money-back Guarantee terms. PrepClubs is not affiliated with or endorsed by Anthropic. Claude and Anthropic are trademarks of Anthropic, PBC.
Find your weakest domain before the exam does
25 questions across all five domains and four official scenarios, timed at the real exam's pace, scored by domain.