Exam guide·9 min read·8 July 2026

Anthropic Exam Guide PDF: CCA-F Study Strategy

Everything in the anthropic exam guide pdf decoded: domain weights, scenario types, and a prioritised study plan to hit 720 on the Claude Certified Architect exam.

By Solomon Udoh · AI Architect & Certification Lead

Anthropic Exam Guide PDF: CCA-F Study Strategy

The anthropic exam guide pdf for the Claude Certified Architect, Foundations (CCA-F) exam is the single authoritative document that defines what Anthropic will test, how questions are weighted, and what a passing performance looks like. This post decodes that guide, maps it to a prioritised study plan, and tells you exactly where to focus your hours before you sit 60 scenario-based questions scored on a 100-to-1000 scale with a passing bar of 720.

As of 3 June 2026, more than 10,000 individuals have earned the CCA-F. The exam launched on 12 March 2026 at $99 per attempt. What follows is the most direct path from the exam guide to a passing score.


What does the CCA-F exam guide actually contain?

The exam guide specifies five domains, 30 task statements, and the percentage weight each domain carries. It also describes the question format: 60 scenario-based multiple-choice items, each with one correct answer and three plausible distractors. There are no trick questions in the traditional sense; instead, every distractor represents a real engineering decision that is wrong for the specific scenario described.

The guide does not publish the raw-to-scaled score conversion, so you cannot calculate an exact question count as the pass mark. On a linear read, 720 out of 1000 corresponds to roughly 41 to 42 correct answers, but Anthropic's scaled scoring means you should target consistent performance across all domains rather than banking on a precise number.

Candidates should expect questions that require them to evaluate trade-offs in production agentic systems, not recall isolated facts.

Anthropic , CCA-F Exam Guide

How are the five domains weighted, and which should you study first?

Study by weight, not by listed order. The exam guide orders domains 1 through 5, but the weights tell a different story about where your time pays off.

DomainTopicWeight
1Agentic Architecture & Orchestration27%
3Claude Code Configuration & Workflows20%
4Prompt Engineering & Structured Output20%
2Tool Design & MCP Integration18%
5Context Management & Reliability15%

Domain 1 alone accounts for more than a quarter of the exam. If you are short on time, every hour spent on Agentic Architecture & Orchestration returns more expected points than an hour on any other domain. Domains 3 and 4 are tied at 20% each and together represent 40% of the exam, making them the second priority block. Domain 2 at 18% is close behind. Domain 5 at 15% is the smallest slice but, as we discuss below, it is disproportionately difficult.


What does Domain 1 (Agentic Architecture, 27%) actually test?

Domain 1 tests your ability to design, debug, and evaluate multi-agent systems. The exam guide's task statements cover coordinator-subagent patterns, session management, decomposition strategies, and hook-based enforcement.

Practically, this means you need to distinguish when a hub-and-spoke architecture is appropriate versus a flat peer-to-peer topology, and you need to know what happens when a coordinator fails to pass structured context to subagents. Questions in this domain frequently present a broken agentic loop and ask you to identify the root cause from four plausible candidates.

The exam consistently rewards deterministic solutions over probabilistic ones when stakes are high. If a question describes a financial transaction pipeline and asks how to enforce a compliance rule, the correct answer is almost always a programmatic hook rather than a prompt instruction. Our concept on hooks vs prompts decision framework maps this directly to the exam's enforcement scenarios.

Key sub-topics to cover in Domain 1:

  1. Coordinator responsibilities and dynamic subagent selection
  2. Parallel subagent spawning and attribution preservation
  3. Session management: when to resume, fork, or start fresh
  4. Agentic loop anti-patterns and premature termination
  5. Prerequisite gate design for multi-step workflows

How do Domains 3 and 4 (Claude Code and Prompt Engineering, 20% each) differ in question style?

Domain 3 (Claude Code Configuration & Workflows) is the most tool-specific domain. Questions test the three-level configuration hierarchy, CLAUDE.md structure, version control implications, and CI/CD integration. The three-level configuration hierarchy is a foundational concept here: global user settings, project-level CLAUDE.md, and path-scoped rules interact in ways that produce surprising behaviour when misconfigured.

Domain 4 (Prompt Engineering & Structured Output) is more analytical. Questions present a prompt and an output, then ask you to diagnose why the output deviated from the schema or how to improve reliability. The exam guide emphasises few-shot examples as the highest-leverage technique for ambiguous edge cases, and it tests your ability to choose between XML delimiters, JSON schemas, and plain prose depending on the output type required.

A useful heuristic: Domain 3 questions tend to have one clearly correct configuration answer; Domain 4 questions often require you to rank two plausible prompt strategies and choose the one that is more robust at scale. Our Prompt Engineering & Structured Output concept library covers the schema design and few-shot patterns that appear most frequently.


What makes Domain 2 (Tool Design & MCP Integration, 18%) harder than its weight suggests?

Domain 2 tests a dense surface area. The Model Context Protocol introduces its own scoping hierarchy, error flag conventions, and resource patterns that are distinct from the Messages API. Candidates who have used Claude via the API but have not worked with MCP servers often underperform here relative to the domain's 18% weight.

The exam guide's task statements for Domain 2 include:

  • Writing tool descriptions that route correctly under ambiguous user intent
  • Diagnosing tool misrouting caused by overlapping descriptions
  • Applying the isError flag pattern for structured error propagation
  • Choosing between building a custom MCP server and using an existing one
  • Configuring environment variable expansion in MCP config files

The tool descriptions as selection mechanism concept is worth studying carefully. The exam presents scenarios where two tools have similar names and asks which description change would resolve misrouting with the least intervention. The answer is almost always a targeted description edit rather than a system prompt addition, because description edits are lower-effort and higher-leverage.


Why is Domain 5 (Context Management & Reliability, 15%) the trickiest domain?

Domain 5 carries the smallest weight but tests concepts that have no obvious analogue in traditional software engineering: token budget management, context rot, summary injection, and RAG retrieval strategy. Candidates with cloud certification backgrounds often find this domain the least intuitive.

The core difficulty is that context management failures are silent. A system that has lost critical context mid-session will still produce plausible-looking output, making the failure hard to detect without explicit instrumentation. The exam tests whether you can identify the conditions under which context degradation occurs and choose the correct remediation from options that all sound reasonable.

Three patterns the exam guide emphasises for Domain 5:

  1. Summary injection for fresh sessions: when a session exceeds a token threshold, summarise and restart rather than continuing with a diluted context window.
  2. Stale context detection: use structured fields in the context to track recency and flag when retrieved facts may be outdated.
  3. RAG retrieval calibration: distinguish between retrieval failures (no relevant chunks returned) and valid empty results (the corpus genuinely contains no answer).

Our Context Management & Reliability concept library covers all three patterns with worked examples.


What scenario types appear most often in CCA-F questions?

The exam guide describes six recurring scenario archetypes. Recognising the archetype quickly is itself a time-saving skill, because each archetype has a predictable set of correct and incorrect answer patterns.

Scenario archetypeDominant domainTypical correct-answer pattern
Customer support agent with escalationDomain 1, 5Structured handoff; deterministic escalation trigger
Multi-agent research pipelineDomain 1, 4Coordinator with attribution-preserving synthesis
MCP-integrated data retrievalDomain 2isError flag; access failure vs valid empty result
Claude Code CI/CD integrationDomain 3Path-scoped rules; version-controlled CLAUDE.md
Structured output extractionDomain 4Schema-first design; few-shot examples for edge cases
Long-running session with context driftDomain 5Summary injection; fresh session with injected state

For each archetype, the exam presents a broken or suboptimal implementation and asks you to identify the root cause or the best fix. The distractor options are designed to be plausible: they represent real engineering choices that would be correct in a different scenario. The skill the exam is testing is contextual judgement, not pattern matching.

The exam is not a test of API syntax recall. It is a test of production trade-off reasoning under realistic constraints.

Anthropic , CCA-F Exam Guide

How should you structure a four-week study plan?

A four-week plan that mirrors the domain weights looks like this:

WeekFocusHours (suggested)
1Domain 1: Agentic Architecture (27%)8 to 10
2Domains 3 and 4: Claude Code + Prompt Engineering (40%)10 to 12
3Domain 2: Tool Design & MCP (18%) + Domain 5: Context Management (15%)8 to 10
4Full practice exams, weak-domain review, scenario drilling6 to 8

Week 4 is where a practice platform matters most. Our practice exams at AI Skill Certs are 60 questions scored 100 to 1000 with 720 as the passing bar, matching the real exam's format exactly. The adaptive engine uses Bayesian Knowledge Tracing with a 0.90 mastery threshold, so it will surface your weakest task statements automatically rather than asking you to guess where your gaps are. We are independent of Anthropic; we do not claim endorsement or approval.


What hands-on projects cover the most exam ground simultaneously?

The exam guide recommends building projects that span multiple domains rather than isolated exercises. Three projects cover the most ground:

Project 1: Multi-tool agent with escalation logic Build a customer support agent that uses at least three MCP-connected tools, detects when a query exceeds its authority, and hands off to a human agent via a structured payload. This covers Domain 1 (coordinator design, structured handoff), Domain 2 (MCP tool descriptions, error propagation), and Domain 5 (context state preservation across the handoff).

Project 2: Claude Code CI pipeline Configure a Claude Code project with a CLAUDE.md at the project root, path-scoped rules for test and source directories, and a CI step that runs Claude non-interactively with the -p flag. This covers Domain 3 entirely and touches Domain 4 (structured output from the CI step).

Project 3: Multi-agent research synthesiser Build a coordinator that spawns parallel subagents to retrieve information from different sources, then synthesises with attribution. This covers Domain 1 (parallel spawning, attribution loss diagnosis), Domain 4 (structured synthesis output), and Domain 5 (context management across subagents).

Each project should be built to break: introduce a deliberate fault, observe the failure mode, and fix it. The exam tests fault diagnosis as much as correct design.


How do you simulate exam conditions without external resources?

The CCA-F is delivered online-proctored or at a test centre. You cannot use external resources during the exam. Effective simulation means:

  1. Close all documentation tabs before starting a timed session.
  2. Use 60-question blocks with a 90-minute timer (1.5 minutes per question is a reasonable target).
  3. Flag questions where you are choosing between two plausible options rather than skipping them; review flagged questions as a set after completing the block to identify pattern gaps.
  4. After each practice exam, categorise wrong answers by domain and by failure type: did you misread the scenario, misremember a concept, or reason incorrectly from correct premises? Each failure type requires a different remediation.

The concepts library at /concepts covers 174 atomic concepts mapped to all five domains and 30 task statements. Use it as a reference during study, not during simulation.

Frequently asked questions

Where can I download the Anthropic exam guide PDF for the CCA-F?
Anthropic publishes the official CCA-F exam guide on its website at anthropic.com. The document is freely available without registration and covers the five domains, 30 task statements, domain weights, question format, and scoring scale. You do not need to purchase anything to access it.
How many questions do I need to answer correctly to pass the CCA-F?
Anthropic does not publish the raw-to-scaled score conversion. The passing score is 720 on a 100-to-1000 scale, which on a linear read corresponds to roughly 41 to 42 of 60 questions. Because scaled scoring is used, you should target consistent performance across all domains rather than a fixed question count.
Is the CCA-F exam guide the same as a study guide?
No. The exam guide defines what is tested: domains, task statements, weights, and question format. It is not a study guide and does not teach the underlying concepts. You need separate study materials, such as Anthropic's documentation, hands-on projects, and a practice platform, to prepare for the content the guide describes.
How long does it take to prepare for the CCA-F if I already have cloud architecture experience?
Candidates with cloud architecture experience typically need four to six weeks of focused preparation. The main gaps are usually Domain 2 (MCP Integration), which has no direct cloud equivalent, and Domain 5 (Context Management), which requires understanding token budget dynamics and context rot patterns that are specific to large language model systems.
Does the CCA-F exam guide specify which Claude models are tested?
The exam guide focuses on architectural patterns, configuration, and prompt engineering principles rather than model-specific parameters. Questions are written to be durable across model versions. You should understand the model family tiers (Haiku, Sonnet, Opus) and their appropriate use cases, but the exam does not test version-specific API parameters.
Can I retake the CCA-F if I fail, and what does it cost?
Yes. Each attempt costs $99. Tiered Anthropic partners receive a discounted first attempt through the Claude Partner Network. There is no published waiting period between attempts, but you should use any failed attempt's score report to identify domain gaps before rescheduling.

People also ask

What is the passing score for the Anthropic CCA-F exam?
The passing score is 720 on a scaled range of 100 to 1000. Anthropic does not publish the raw-to-scaled conversion, so there is no exact question count that guarantees a pass. Consistent performance across all five domains is the safest strategy for clearing the 720 threshold.
How many domains are in the Anthropic Claude certification exam?
The CCA-F covers five domains: Agentic Architecture & Orchestration (27%), Tool Design & MCP Integration (18%), Claude Code Configuration & Workflows (20%), Prompt Engineering & Structured Output (20%), and Context Management & Reliability (15%). Together they contain 30 task statements across 60 exam questions.
Is the Anthropic Claude Certified Architect exam worth it for solution architects?
For solution architects working within the Claude Partner Network, the CCA-F signals verified production competence to clients and employers. As of 3 June 2026, over 10,000 individuals have certified, and the credential is part of a $100M partner programme. Its value scales with how central Claude is to your client work.
What types of questions are on the Anthropic CCA-F exam?
All 60 questions are scenario-based multiple-choice with one correct answer and three plausible distractors. Questions present realistic production situations, such as a broken agentic loop or a misrouting tool, and ask you to identify the root cause or the best fix. Fact recall alone is insufficient; contextual trade-off reasoning is required.
How much does the Anthropic Claude certification exam cost?
Each CCA-F attempt costs $99. Tiered Anthropic partners in the Claude Partner Network receive a discounted first attempt. The exam is delivered online-proctored or at an authorised test centre, and there is no additional fee for choosing either delivery mode.

About the author

Solomon Udoh

AI Architect & Certification Lead

Solomon Udoh is an AI Architect who designs and ships production agent systems on the Claude API and Claude Code. He built AI Skill Certs' adaptive engine and authored its 174-concept knowledge graph, mapping every Claude Certified Architect - Foundations objective to hands-on, exam-aligned practice.

  • Designs production multi-agent systems on the Claude API and Agent SDK
  • Author of the AI Skill Certs knowledge graph (174 mapped exam concepts)
  • Builds with MCP, Claude Code, structured outputs, and agentic loops daily
  • Reviews every concept page against the official Anthropic exam guide

You might also like

Ready to put it into practice?

Study every exam concept with an adaptive tutor.

Start studying