Career upgrade: Learn practical AI skills for better jobs and higher pay.
Level up
All Practice Exams

100+ Free Claude Certified Architect - Foundations Practice Questions

Pass your Claude Certified Architect - Foundations (CCA-F) exam on the first try — instant access, no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
100+ Questions
100% Free
1 / 100
Question 1
Score: 0/0

A team wants Claude to 'think step by step' before answering a hard reasoning problem, and to do so as real reasoning tokens rather than a hidden trick. Which capability and parameter control this?

A
B
C
D
to track
2026 Statistics

Key Facts: Claude Certified Architect - Foundations Exam

720/1000

Passing Score

Anthropic Claude Partner Network

60

Exam Questions

Anthropic (multiple-choice)

120 min

Exam Time

Anthropic

5

Exam Domains

CCA-F exam guide

$99

Exam Fee

Anthropic (free for first 5,000 partner employees)

Mar 2026

Launch

Anthropic first official certification

CCA-F requires a scaled score of 720 out of 1000 across 60 multiple-choice questions in 120 minutes, and costs $99 (free for the first 5,000 Claude Partner Network employees). Anthropic's first official certification (launched March 2026) is architecture-level: it tests agentic system design with the Claude Agent SDK, MCP integration, Claude Code workflows, prompt engineering and structured output, and production reliability. Preparation typically takes 4-12 weeks with prior hands-on Claude API and Claude Code experience.

Sample Claude Certified Architect - Foundations Practice Questions

Try these sample questions to test your Claude Certified Architect - Foundations exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1A team is building a customer-support agent. They want the simplest reliable architecture and only plan to add complexity if needed. According to Anthropic's guidance on building effective agents, what should they start with?
A.A multi-agent swarm where dozens of agents negotiate the answer
B.The simplest solution possible, such as a single LLM call with retrieval and in-context examples, adding agentic steps only when simpler approaches fall short
C.An orchestrator-worker system with at least five specialized workers from day one
D.A fine-tuned model dedicated to support before writing any prompts
Explanation: Anthropic's 'Building Effective Agents' guidance is explicit: find the simplest solution possible and only increase complexity when needed. Many use cases are solved by a single optimized LLM call with retrieval and examples, and full agentic systems should be reserved for when simpler patterns demonstrably fall short. This keeps systems transparent, cheaper, and easier to evaluate.
2An architect needs to classify incoming requests and send each to a specialized prompt: billing questions to one prompt, technical issues to another, and general questions to a third. Which workflow pattern best fits this requirement?
A.Parallelization
B.Evaluator-optimizer
C.Prompt chaining
D.Routing
Explanation: Routing classifies an input and directs it to a specialized downstream prompt or model. It works well when there are distinct categories better handled separately and when classification can be done accurately. Separating concerns this way lets you optimize each path independently without one prompt trying to handle everything.
3A coding task requires generating a draft, then critiquing it against quality criteria, then refining it, repeating until the critique passes. Which pattern describes this, and what is the key design principle?
A.Orchestrator-worker, with one orchestrator spawning all critics at once
B.Routing, where a classifier picks the best draft from several
C.Evaluator-optimizer, separating generation and evaluation into distinct LLM calls with an adversarial evaluator stance
D.Parallelization, generating many drafts and averaging them
Explanation: The evaluator-optimizer pattern uses one call to generate and another to evaluate and give feedback, looping until criteria are met. Anthropic recommends separating generation from evaluation into distinct calls and giving the evaluator an adversarial stance so it finds real problems. This is one of the highest-leverage improvements for quality-sensitive tasks.
4A research agent must handle tasks where the number and nature of subtasks cannot be predicted in advance: a central model must dynamically break the work down, delegate pieces, and synthesize the results. Which pattern is the best fit?
A.Prompt chaining with a fixed sequence of steps
B.Orchestrator-worker
C.Sectioning a single prompt into headers
D.Routing to one of three static categories
Explanation: In the orchestrator-worker pattern, a central LLM dynamically decomposes a task, delegates subtasks to worker LLMs, and synthesizes their results. It is specifically suited to problems where you cannot predict the subtasks ahead of time, unlike fixed chains or static routing. The orchestrator adapts the plan based on what it discovers.
5An architect wants to distinguish a 'workflow' from an 'agent' in Anthropic's terminology. Which statement is correct?
A.Workflows let the LLM dynamically direct its own process and tool usage; agents follow predefined code paths
B.Workflows and agents are identical terms with no practical difference
C.Agents never use tools, while workflows always do
D.Workflows orchestrate LLMs and tools through predefined code paths; agents dynamically direct their own processes and tool usage
Explanation: Anthropic defines workflows as systems where LLMs and tools are orchestrated through predefined code paths, while agents are systems where the LLM dynamically directs its own processes and tool usage, controlling how it accomplishes the task. The distinction guides architecture choices: workflows offer predictability, agents offer flexibility for open-ended problems.
6A latency-sensitive content pipeline must run a translation, a sentiment analysis, and a toxicity check on the same input, all independent of each other, then combine the results. Which pattern minimizes end-to-end latency?
A.Prompt chaining the three checks sequentially
B.Parallelization (sectioning), running the three independent calls concurrently and aggregating
C.Evaluator-optimizer looping over each check
D.A single giant prompt asked to do all three plus self-grade
Explanation: Parallelization runs independent subtasks simultaneously and aggregates their outputs. When subtasks do not depend on one another, sectioning them into concurrent calls reduces wall-clock latency compared to sequential chaining. It can also improve focus, since each call handles one concern.
7An agent autonomously calls tools in a loop. Anthropic recommends giving the agent guardrails and a way to stop. Which design element most directly bounds runaway loops in a production agent?
A.Setting a maximum number of turns/iterations and clear stopping conditions
B.Increasing max_tokens to the model's maximum on every call
C.Disabling all tool use after the first call
D.Removing the system prompt to reduce token cost
Explanation: Autonomous agents run in a loop, so you must bound them with stopping conditions and a maximum number of turns to prevent runaway cost or infinite loops. The Agent SDK exposes options like maxTurns for exactly this. Clear stop criteria are a core reliability guardrail for agentic systems.
8When designing a multi-step agent, Anthropic emphasizes 'showing the agent's planning steps' and keeping the design simple. What is the primary architectural benefit of this transparency?
A.It guarantees the agent never makes a mistake
B.It eliminates the need for any evaluation or testing
C.It makes the agent's behavior easier to debug, audit, and trust, and easier to course-correct
D.It allows the model to skip tool calls entirely
Explanation: Anthropic recommends prioritizing transparency by explicitly showing the agent's planning steps. Exposing the plan makes behavior observable, so engineers can debug, audit, and intervene when the agent goes off track. Transparency is a core operability principle for production agents, not a correctness guarantee.
9A team uses the Claude Agent SDK and spawns several subagents in parallel for a large refactor. Each subagent does deep analysis. What is the main architectural advantage of using separate subagents here?
A.Subagents share one context window, so all analysis is visible to every agent
B.Subagents automatically inherit all parent permissions, removing any approval prompts
C.Subagents cannot use tools, which makes them faster
D.Each subagent gets its own context window, so one subagent's exploration does not pollute the others' or the main context
Explanation: In the Claude Agent SDK, each subagent runs with its own isolated context window, so verbose exploration in one subagent does not consume or pollute the main conversation or sibling subagents. This context preservation is a primary reason to use subagents for parallelizable, context-heavy subtasks. The main agent can then synthesize concise results.
10An architect must choose a model for a high-volume, latency-sensitive classification step inside a larger agent, where most decisions are simple. Which model selection strategy aligns with Anthropic's guidance?
A.Always use the largest Opus model everywhere for maximum quality
B.Use a fine-tuned model because base models cannot classify
C.Use a faster, cheaper model such as Haiku for the simple high-volume step, reserving larger models for genuinely hard reasoning steps
D.Route every step to a random model to balance load
Explanation: Anthropic's model lineup is tiered: Haiku for fast, low-cost, high-volume tasks; Sonnet for balanced general work; Opus for the hardest reasoning. A good architecture matches each step to the cheapest model that meets the quality bar, using Haiku for simple high-volume classification and reserving Opus for complex reasoning. This optimizes both cost and latency.

About the Claude Certified Architect - Foundations Exam

Claude Certified Architect - Foundations (CCA-F) is Anthropic's first official technical certification, launched March 2026 through the Claude Partner Network. It validates the ability to design, deploy, and maintain production-grade applications across the Claude ecosystem, including the Claude API, Claude Agent SDK, Claude Code, and the Model Context Protocol (MCP). The exam covers five domains: agentic architecture and orchestration (27%), Claude Code configuration and workflows (20%), prompt engineering and structured output (20%), tool design and MCP integration (18%), and context management and reliability (15%). It is an architecture-level credential that tests system-design decisions rather than everyday Claude usage.

Questions

60 scored questions

Time Limit

120 minutes

Passing Score

720/1000

Exam Fee

$99 (free early access for first 5,000 partner employees) (Anthropic)

Claude Certified Architect - Foundations Exam Content Outline

27%

Agentic Architecture & Orchestration

Design agent and multi-agent systems with the Claude Agent SDK: agent loops, subagents, orchestrator-worker and evaluator-optimizer patterns, prompt chaining, routing, parallelization, and selecting Opus, Sonnet, or Haiku for each role

20%

Claude Code Configuration & Workflows

Configure Claude Code for production: CLAUDE.md project memory, settings.json, permissions and modes, slash commands, hooks, subagents, headless and CI usage, and wiring MCP servers into developer workflows

20%

Prompt Engineering & Structured Output

Write system prompts with clear role and task framing, use examples and extended thinking, define structured outputs and tool-based JSON schemas, set stop sequences, and reliably parse model responses in production

18%

Tool Design & MCP Integration

Design tool-use schemas, integrate Model Context Protocol (MCP) servers, apply MCP primitives (tools, resources, prompts), choose stdio vs HTTP transports, handle tool errors, and secure tool and data access

15%

Context Management & Reliability

Manage the context window, use prompt caching, implement retries and timeouts, apply RAG and retrieval, build evals and guardrails, and optimize latency, cost, and reliability under failure conditions

How to Pass the Claude Certified Architect - Foundations Exam

What You Need to Know

  • Passing score: 720/1000
  • Exam length: 60 questions
  • Time limit: 120 minutes
  • Exam fee: $99 (free early access for first 5,000 partner employees)

Keys to Passing

  • Complete 500+ practice questions
  • Score 80%+ consistently before scheduling
  • Focus on highest-weighted sections
  • Use our AI tutor for tough concepts

Claude Certified Architect - Foundations Study Tips from Top Performers

1Prioritize the highest-weighted domain (27%): agentic architecture and orchestration with the Claude Agent SDK, subagents, and multi-agent patterns
2Know when to apply each agent pattern: prompt chaining, routing, parallelization, orchestrator-worker, and evaluator-optimizer — and the trade-offs of each
3Understand model selection: when to use Opus vs Sonnet vs Haiku based on capability, latency, and cost for a given agent role
4Master MCP primitives cold: tools, resources, and prompts, plus stdio vs HTTP transports and how MCP servers are configured in Claude Code
5Practice structured output: tool-based JSON schemas, stop sequences, and reliable parsing — the exam tests production-grade output handling, not casual prompting
6Study Claude Code configuration: CLAUDE.md project memory, settings.json, permissions and modes, hooks, and slash commands
7Know reliability levers: prompt caching, retries and timeouts, context-window management, RAG, evals, and guardrails for production failure handling
8Complete 100+ practice questions across all five domains and review every wrong answer until you can explain the architecture principle behind the correct choice

Frequently Asked Questions

What is the CCA-F passing score?

The Claude Certified Architect - Foundations (CCA-F) exam requires a scaled score of 720 out of a 100-1000 range to pass. The exam contains 60 multiple-choice questions delivered in 120 minutes through a proctored format on the Claude Partner Network.

How much does the CCA-F exam cost?

The CCA-F exam fee is $99 USD. However, access is currently through the Claude Partner Network, which any organization can join for free, and the first 5,000 partner company employees receive early access to the exam at no cost.

What does the CCA-F exam cover?

CCA-F covers five domains: agentic architecture and orchestration (27%), Claude Code configuration and workflows (20%), prompt engineering and structured output (20%), tool design and MCP integration (18%), and context management and reliability (15%). Agentic architecture and orchestration is the highest-weighted domain and is central to the exam.

What prior experience do I need for CCA-F?

Anthropic recommends at least 6 months of hands-on experience building with the Claude API and Claude Code. CCA-F is an architecture-level credential, so you should be comfortable designing production systems with the Claude Agent SDK, integrating MCP servers, engineering prompts and structured outputs, and managing context, reliability, and cost rather than just everyday Claude usage.

How long should I study for CCA-F?

Most candidates need 4-12 weeks (roughly 40-100 hours) depending on prior hands-on experience. Spend significant time building: configure MCP servers, design multi-agent workflows with the Claude Agent SDK, and practice structured-output and reliability patterns. Anthropic Academy offers free aligned courses including Building with the Claude API, Claude Code 101, and Introduction to MCP.

What is the Model Context Protocol (MCP) and why does it matter for CCA-F?

Model Context Protocol (MCP) is an open standard from Anthropic that lets Claude connect to external tools, data sources, and prompts through MCP servers. CCA-F tests MCP server integration, MCP primitives (tools, resources, and prompts), and transport choices (stdio vs HTTP) in the Tool Design & MCP Integration domain (18%), and MCP also appears in the Claude Code and agentic architecture domains, making it a recurring exam theme.

Is CCA-F a real Anthropic certification?

Yes. CCA-F is Anthropic's first official technical certification, launched March 2026 alongside the Claude Partner Network. It is delivered as a proctored exam and validates production architecture skills across the Claude ecosystem. Anthropic has indicated additional certifications for sellers, developers, and advanced architects are planned later in 2026.