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
| Score | Reading | Next step |
|---|---|---|
| 17 to 20 | Strong. Your judgment matches the blueprint across domains. | Move to timed full-length tests and drill multiple-response speed. |
| 14 to 16 | Borderline. One or two domains are soft. | Use the domain map at the end and reread the guide for every domain you missed twice. |
| Under 14 | Study 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 answeredAn 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?
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?
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.)
Domain 2: Claude Models, Prompting & Context Engineering (13%)
Questions 4–5
0/2 answeredAn 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?
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?
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 answeredA 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 answeredA 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?
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?
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.)
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.
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.
- Design Tools and an MCP Server for a Claude Agent ~3hintermediateRubric-graded ProOpen project
- Build a Full MCP Server and Connect Claude as a Client ~3hintermediateRubric-graded ProOpen project
Domain 4: Evaluation, Testing & Optimization (16%)
Questions 11–13
0/3 answeredAn 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?
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?
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.)
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 answeredAn 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)?
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 answeredA 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.)
Domain 6: Stakeholder Communication & Lifecycle Management (14%)
Questions 17–19
0/3 answeredA 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?
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.)
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 answeredA 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.
- Domain 1, Questions 1 to 3 (pattern selection, feedback loops, decomposition): Multi-agent orchestration patterns for CCAR-P.
- Domain 2, Questions 4 to 6 (routing, caching, prompting technique): Cost and latency optimization: caching, batch, routing and the Domain 2 rules in the CCAR-P cheat sheet.
- Domain 3, Questions 7 to 10 (MCP, authorization, RAG, progressive discovery): the Integration section of the exam domains breakdown and Deploying Claude in the enterprise for identity and network design.
- Domain 4, Questions 11 to 13 (diagnosis, mixed-methodology evaluation, cost levers): CCAR-P evaluation strategy: eval datasets, metrics, and diagnosis.
- Domain 5, Questions 14 to 16 (HITL, compliance regimes, injection defenses): Governance, guardrails, and compliance.
- Domain 6, Questions 17 to 19 (discovery, SLA framing, ADRs): Domain 6 of the complete guide and the trap list in How to pass CCAR-P on your first attempt.
- Domain 7, Question 20 (team configuration): the Domain 7 section of the cheat sheet.
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.
- Build the Canonical Claude Agent Workflow Patterns ~4hintermediateRubric-graded ProOpen project
- Engineer a Claude Decision Prompt and Prove It with Eval ~3hintermediateRubric-graded ProOpen project
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 completedNext 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:
- Anthropic Partner Academy: Claude Certified Architect - Professional certification
- Claude Developer Platform docs: Prompt caching
- Claude Developer Platform docs: Batch processing
- Claude Code docs: Settings and configuration scopes
- Model Context Protocol specification and overview
- U.S. Department of Health and Human Services: HIPAA
Ready to Pass the CCAR-P Exam?
Join thousands who passed with Preporato practice tests
![CCAR-P Practice Questions with Explanations: 20 Scenario Items [2026]](/blog/ccar-p-practice-questions-with-explanations-2026.webp)