CCAR-PAnthropicPractice QuestionsClaudeAI Architecture

CCAR-P Practice Questions with Explanations: 20 Scenario Items [2026]

Preporato TeamAugust 16, 202618 min readCCAR-P
CCAR-P Practice Questions with Explanations: 20 Scenario Items [2026]

Twenty scenario questions written to the Claude Certified Architect - Professional (CCAR-P) blueprint, spread across all seven domains in proportion to exam weight, each followed by the answer and an explanation that says why the winning option wins and why every distractor loses for that scenario. Each item drops you into an enterprise situation with a decision to make. Use the set as a diagnostic: score yourself against the rubric below, then follow the domain-by-domain map at the end to the guide that closes each gap. Five of the twenty are multiple-response items, matching the roughly one-quarter share on the real exam, so practice judging each option on its own merits. All twenty are new, written in the style of Preporato's full-length CCAR-P tests.

Start Here

If you have not yet mapped the exam, read the CCAR-P complete guide for the seven domains, scoring, and study path. For full-length timed practice, Preporato's CCAR-P practice tests offer 6 exams of 63 questions on the same blueprint, and the free 20-question sampler shows you the format before you commit.

How CCAR-P questions are built

CCAR-P stems carry more than one constraint on purpose: an industry, a workload profile (volume, latency budget, cost pressure), a compliance or stakeholder condition, and a symptom, followed by a request for the best architectural response. The wrong options are real techniques that solve a neighboring problem: a Batch API answer when a user is waiting, a prompt instruction when the requirement is a security guarantee, a stronger model when retrieval is what failed. The exam asks for the best fit among options that would each work somewhere, so find the dominant constraint in the stem before you read the choices. On multiple-response items ("Select TWO"), every selection must survive on its own; one plausible-but-wrong pick costs the whole question.

Self-check rubric

Score one point per fully correct question (both selections right on Select TWO items). Take the set once, untimed, before reading any explanation.

Scoring your 20 answers

ScoreReadingNext step
17 to 20Strong. Your judgment matches the blueprint across domains.Move to timed full-length tests and drill multiple-response speed.
14 to 16Borderline. One or two domains are soft.Use the domain map at the end and reread the guide for every domain you missed twice.
Under 14Study phase. The patterns are still forming.Work through the complete guide and cheat sheet, then retake this set in a week.

Preparing for CCAR-P? Practice with 390+ exam questions

Domain 1: Solution Design & Architecture (17%)

Questions 1–3

0/3 answered
Question 1Solution Design & Architecture (17%)

An accounting firm wants Claude to prepare quarterly sales-tax filings from client ledger exports. Every filing follows the same sequence: normalize the ledger, map line items to tax codes, compute totals, populate the form, and flag anomalies for a reviewer. Auditors must trace each figure back to its stage. Which architecture pattern should the architect recommend?

Question 2Solution Design & Architecture (17%)

A university is designing an admissions-inquiry assistant. The design covers input handling across chat and email, retrieval over the course catalog, and response generation with tone guardrails. Nothing is planned after a reply is sent. A review board asks what will most weaken the solution over its first year. What should the architect identify?

Question 3Solution Design & Architecture (17%)

A semiconductor-equipment vendor is scoping a field-service assistant that parses fault reports, searches service manuals, checks spare-parts inventory, and drafts return authorizations. The sponsor asks for "a team of agents." The architect wants evidence before choosing orchestrator-worker over one scoped agent. Which TWO conditions, if true, would justify the multi-agent design? (Select TWO.)

Select TWO

Domain 2: Claude Models, Prompting & Context Engineering (13%)

Questions 4–5

0/2 answered
Question 4Claude Models, Prompting & Context Engineering (13%)

An online-education platform grades about three million short-answer quiz responses per day against instructor rubrics. Nine in ten responses are clearly right or wrong; the rest need careful reasoning about partial credit. Students see grades within two seconds. The current design sends everything to the top capability tier and is far over budget. What should the architect propose?

Question 5Claude Models, Prompting & Context Engineering (13%)

An airline crew-scheduling assistant sends a 12,000-token prefix of union rules and tool definitions with every request, and prompt caching is enabled. Cache reads stay near zero. A trace shows the system prompt opens with the current timestamp, and the tool list is assembled in a different order on each call. What is the correct fix?

Prefix cache walk-through
2000 prefix + 30 tail tokens
prefill billed at full rate
cache hit · prefill skipped
REQUEST 1
same system + few-shots · "How do I reset my password?"
$0.0000
PREFIX · 2000 tokens · prefilled
TAIL
prefilled: 2030 tokens · nothing to reuse yet
REQUEST 2
same system + few-shots · "My order has not arrived."
$0.0000
PREFIX · 2000 tokens · CACHE HIT
TAIL
prefilled: 30 tokens · reused from KV cache: 2000
REQUEST 3
same system + few-shots · "Can I change my shipping address?"
$0.0000
PREFIX · 2000 tokens · CACHE HIT
TAIL
prefilled: 30 tokens · reused from KV cache: 2000
Running bill
$0.0000
3 requests at the cached rate after the first
If you had no cache
$0.0000
every request reprocesses the prefix from scratch
Saved
0%
same prefix · same tokens · reused KV cache
Three requests share a 2000-token prefix and differ only at the tail. Request 1 prefills everything. Requests 2 and 3 reuse the KV cache for the prefix and only prefill the tail. Cost numbers assume a roughly 10x discount on cached prefix tokens.

Watch requests 2 and 3 reuse the cached prefix while only the tail is processed fresh; the airline assistant in Question 5 never gets that reuse because its timestamp sits at the front of the prompt and its tool list reorders on every call.

Study tip: cache-breaking mistakes and batch-versus-realtime calls recur across Domains 2 and 4; the CCAR-P cost and latency optimization guide covers every lever with worked scenarios.

Questions 6–6

0/1 answered
Question 6Claude Models, Prompting & Context Engineering (13%)

A restaurant chain classifies food-safety reports into five fixed labels. A zero-shot prompt (instructions only, no examples) handles clear cases well but confuses "near miss" with "incident" whenever a report describes a hazard that was caught in time. Latency and cost per report are already tight. What is the lowest-effort change most likely to fix the confusion?

Domain 3: Integration (19%)

Questions 7–10

0/4 answered
Question 7Integration (19%)

A container-port operator runs a berthing-schedule service that three Claude surfaces need: engineers in Claude Code, an internal desktop assistant for planners, and an API-based operations agent. Each team has started writing its own connector, and the service owner is fielding three different bug reports. Which integration mechanism should the architect standardize on?

Question 8Integration (19%)

A veterinary-clinic chain deploys an assistant that reads animal-patient records and billing across 40 clinics. Every tool call runs under one service account with read and write access to all clinics. A security review notes that a front-desk user in one clinic could, through the assistant, retrieve or edit another clinic's records. What is the correct remediation?

Question 9Integration (19%)

An architecture firm's building-code assistant retrieves from long, hierarchically numbered code documents. Traces show two failure shapes: answers about a clause omit qualifiers that sit in the adjacent subsection, and queries citing an exact section number such as "R302.5.1" often retrieve unrelated text. Which TWO changes should the architect make first? (Select TWO.)

Select TWO
Question 10Integration (19%)

A cybersecurity vendor's internal operations agent has registered 350 tools across 40 services. Loading every schema consumes a third of the context window before work begins, tool-selection accuracy has fallen, and any single task uses at most five tools. New services arrive monthly. Which context strategy should the architect adopt?

Study tip: Integration is the heaviest domain at 19%. If mechanism selection, capability bloat, or RAG chunking felt uncertain, the CCAR-P exam domains breakdown covers each Integration topic with the trade-off being tested.

Domain 3 hands-on

Build the MCP server behind Questions 7 to 10

You design scoped tools with descriptions the model can route on and connect Claude as a client to an MCP server you built, so the mechanism choice in Question 7, the authorization gap in Question 8, and the tool bloat in Question 10 are problems you have handled in code.

Domain 4: Evaluation, Testing & Optimization (16%)

Questions 11–13

0/3 answered
Question 11Evaluation, Testing & Optimization (16%)

An energy-trading desk's assistant explains settlement adjustments on a mid-tier model. Traces confirm the correct contract clauses are retrieved every time, and the prompt states its criteria explicitly. Single-step adjustments are answered correctly; anything requiring three or more dependent calculations fails. Which diagnosis and first fix should the architect record?

Question 12Evaluation, Testing & Optimization (16%)

An HR-technology vendor is designing evaluation for a job-description generator before launch. Every output must be valid JSON with six required fields, must avoid biased or exclusionary language, and should read naturally to recruiters. Releases will ship weekly and volume is high. Which evaluation design fits these requirements?

Question 13Evaluation, Testing & Optimization (16%)

A legal publisher's summarization pipeline runs at two and a half times its inference budget. Seventy percent of traffic is overnight bulk work with no one waiting; thirty percent is interactive with healthy margin on p95 latency (the time within which 95 percent of requests complete). Every request carries a 9,000-token stable instruction prefix. Which TWO levers should the architect pull first? (Select TWO.)

Select TWO
the four eval shapes
LLM-as-judge
cost per example →fidelity →Exact-matchClassifierLLM-as-judgeHuman
A strong model grades the output against a rubric. Flexible and scalable, but biased (position, length, self-preference); de-bias it before trusting it.
Cheap-and-broad, then expensive-and-true. The four ways to score an LLM trade cost against how well they capture real quality. Exact-match is free but only fits closed-answer tasks. A classifier scales a specific property cheaply. An LLM judge is flexible and scalable but biased. Humans are the truth and the bottleneck. You do not pick one; you build a pyramid: cheap graders run on everything, a judge on a large sample, and humans on a small calibrated slice that keeps the cheaper layers honest.

Tap each grader to see its cost against its fidelity; Question 12 is this chart applied to one product, with code checks on the schema, an LLM judge on language quality, and a human sample that calibrates the judge.

Master These Concepts with Practice

Our CCAR-P practice bundle includes:

  • 6 full practice exams (390+ questions)
  • Detailed explanations for every answer
  • Domain-by-domain performance tracking

30-day money-back guarantee

Domain 5: Governance, Safety & Risk Management (14%)

Questions 14–15

0/2 answered
Question 14Governance, Safety & Risk Management (14%)

An automotive dealership group's assistant books service appointments at high volume, and it can also issue goodwill credits and send binding price quotes to customers. Finance wants control over the money-moving actions without destroying the efficiency case for routine bookings. Where should the architect place human-in-the-loop review (a human decision point inside the automated flow)?

Question 15Governance, Safety & Risk Management (14%)

A telehealth startup will use Claude to draft visit summaries for patients in Germany and in the United States. Summaries contain diagnoses and medication history, and the service runs in a single US cloud region. Legal asks the architect which regulatory regimes shape the architecture and what controls follow. What should the architect answer?

Study tip: guardrail layers, human-in-the-loop placement, and the GDPR, HIPAA, and FedRAMP triggers are covered end to end in the CCAR-P governance, guardrails, and compliance guide.

Questions 16–16

0/1 answered
Question 16Governance, Safety & Risk Management (14%)

A property-management assistant summarizes incoming tenant emails and can file maintenance orders and pay vendors through tools. A red-team exercise shows that a crafted email can instruct the assistant to issue a vendor payment. Leadership wants the exposure closed before launch. Which TWO controls should the architect implement? (Select TWO.)

Select TWO

Domain 6: Stakeholder Communication & Lifecycle Management (14%)

Questions 17–19

0/3 answered
Question 17Stakeholder Communication & Lifecycle Management (14%)

A regional airline's operations executive opens an engagement by saying the ops center "needs an AI copilot like the one at the conference," confirms the budget is approved, and asks for a proof of concept in three weeks. No success criteria, data inventory, or constraints have been discussed. What should the architect do first?

Question 18Stakeholder Communication & Lifecycle Management (14%)

A mining company's procurement director tells the architect that the new contract-summarization assistant must "never miss a clause" and "answer within a second," and asks for both in the statement of work. The corpus is large and clause language varies by supplier. Which TWO responses reflect professional expectation-setting? (Select TWO.)

Select TWO
Question 19Stakeholder Communication & Lifecycle Management (14%)

A crop-advisory assistant has been live for a year. The original architect has left, and a new technical lead proposes replacing retrieval with a fine-tuned model, arguing that nobody can explain why retrieval was chosen. Meeting notes and chat threads exist but settle nothing. What should the architect institute so this does not recur?

Domain 7: Developer Productivity & Operational Enablement (7%)

Questions 20–20

0/1 answered
Question 20Developer Productivity & Operational Enablement (7%)

A video-streaming company is rolling Claude Code out to 120 engineers. Repository conventions, build and test commands, and a shared MCP server for the internal metrics service currently live in one senior engineer's personal configuration, and nobody else's sessions behave the same way. Security also forbids credentials in the repository. What should the architect direct?

Study tip: the traps in this set (flagship-everywhere, agentic-by-default, prompt-guarantee, context-stuffing, skip-discovery) are catalogued with fixes in Common CCAR-P exam mistakes to avoid.

If you missed these, read this

Tally your misses by domain, then go straight to the guide that covers the judgment you dropped.

Miss to build

Rebuild the Domain 1 and 4 judgment as graded projects

The workflow-patterns task rebuilds the Domain 1 choice between an augmented call, a workflow, and an agentic loop on one job, and the decision-prompt task has you prove a prompt change on an eval set, which is the Domain 4 judgment behind Questions 11 to 13.

Twenty questions is a diagnostic; the exam presents 63 in 120 minutes, and pacing under a clock is a separate skill from judgment. Preporato's CCAR-P practice tests provide six full-length exams on the same 7-domain blueprint with an explanation for every option, and the free sampler is the zero-cost way to see the format. Both are included in Preporato Pro; see pricing for the Pro plan and the single-cert bundle.

Key Takeaways

0/12 completed

Next steps

Score the set, note the domains where you dropped points, and read the linked guides for those domains before your next attempt. Then move to timed practice: Preporato's CCAR-P practice tests mirror the 63-question, 120-minute format, and the CCAR-P exam format guide explains pacing, scaled scoring, and test-day logistics. If you are still deciding between the two Claude architect tiers, CCA-F vs CCAR-P settles that first.

Sources:

Ready to Pass the CCAR-P Exam?

Join thousands who passed with Preporato practice tests

Instant access30-day guaranteeUpdated monthly
CCAR-P
6 Practice Exams
Detailed Explanations
Performance Analytics
Get Full Access - $19.99Try Free Questions →