CCAR-P Practice Questions: Solution Design & Architecture Domain
Test your CCAR-P knowledge with 10 practice questions from the Solution Design & Architecture domain. Includes detailed explanations and answers.
CCAR-P Practice Questions
Master the Solution Design & Architecture Domain
Test your knowledge in the Solution Design & Architecture domain with these 10 practice questions. Each question is designed to help you prepare for the CCAR-P certification exam with detailed explanations to reinforce your learning.
Question 1
A public company uses Claude to help prepare quarterly financial commentary. The process always follows four steps: extract approved figures, validate them against the ledger, draft commentary, and verify every claim against the validated figures. Each step consumes an approved artifact from the preceding step, and auditors require reproducible runs. Which architectural pattern is BEST?
Show Answer & Explanation
Correct Answer: A
Correct answer (A): A sequential workflow directly represents the fixed order and explicit dependencies while preserving each approved artifact for audit and replay. The decisive constraints are reproducibility and the requirement that every stage consume a validated predecessor. The architectural principle is to use deterministic orchestration when control flow is known rather than introducing model-directed autonomy. In production, explicit stage contracts simplify testing, localize failures, and give auditors evidence of how each statement was produced.
Why the other options are wrong:
- Option B: An autonomous agent is appropriate when the next action must be discovered dynamically, but here the steps and their order are fixed and auditable.
- Option C: Specialist debate could improve some drafts, but it introduces coordination overhead and nondeterminism without addressing a need for independent parallel work.
- Option D: A single call is operationally simple, but it obscures intermediate validation and weakens reproducibility when every stage requires an approved artifact.
Question 2
A manufacturer processes 80,000 supplier invoices monthly. Layouts vary widely, and manual extraction is expensive. Invoice identifiers must match purchase orders exactly, totals must reconcile to line items, and duplicate payments are unacceptable. The proposed design asks Claude to extract fields, validate arithmetic, detect duplicates, and approve invoices in one prompt. Which architecture BEST meets the requirements?
Show Answer & Explanation
Correct Answer: A
Correct answer (A): Claude adds value when interpreting varied unstructured layouts, while exact identifiers, arithmetic, and duplicate detection require deterministic enforcement. The explicit requirement that financial controls be exact makes this partition best. Separating probabilistic interpretation from hard controls reduces payment risk and makes failures easier to audit in production.
Why the other options are wrong:
- Option B: Confidence-based review is a plausible exception strategy, but model-reported confidence does not guarantee exact arithmetic, identifier matching, or duplicate prevention.
- Option C: Template-based OCR offers predictable processing, but the scenario states that layouts vary widely, making it likely to preserve excessive manual work.
- Option D: Independent agreement may reduce some extraction errors, but two probabilistic calls do not replace deterministic financial validation and add unnecessary cost.
Question 3
An investment firm analyzes acquisition packages containing financial statements, contracts, tax reports, and market studies. Extraction from each document is independent, but covenant analysis requires normalized figures from the statements and contracts, and the final risk memo depends on all verified findings. The current fully sequential process takes 11 minutes; the target is under 5 minutes without weakening validation. Which orchestration design is BEST?
Show Answer & Explanation
Correct Answer: D
Correct answer (D): Independent extraction tasks can run concurrently, but covenant analysis and final synthesis cannot begin reliably until their required artifacts exist and have been validated. The latency target favors parallelism only where the dependency graph permits it. CCAR-P architecture derives orchestration from actual data dependencies rather than applying one pattern uniformly. This reduces wall-clock time while preserving schema validation, analytical ordering, and fault isolation.
Why the other options are wrong:
- Option A: Broad parallelism can reduce latency, but risk analysis performed before normalized dependent inputs exist may use inconsistent or incomplete figures.
- Option B: Risk-based early stopping can save processing in screening workflows, but the required final memo depends on all verified findings and cannot omit lower-priority documents.
- Option C: A single request avoids explicit orchestration, but it obscures dependency validation, increases context pressure, and provides weaker stage-level retry and fault isolation.
Question 4
An insurer asks an architecture team to build an autonomous Claude agent that reads claim correspondence, determines coverage, and sends settlement decisions. The current process handles 30,000 letters per month. Incorrect decisions can create financial and regulatory exposure, but stakeholders have not defined target accuracy, acceptable review rates, or which decisions may be automated. What should the architect recommend FIRST?
Show Answer & Explanation
Correct Answer: B
Correct answer (B): The initiative lacks success criteria and has materially consequential errors, so the architect must first establish measurable outcomes, failure costs, and step-level automation boundaries. The governing principle is to define the business problem and risk model before selecting an AI pattern. In production, this prevents a technology-first prototype from silently defining policy, controls, and acceptable risk.
Why the other options are wrong:
- Option A: A prototype can provide useful evidence, but beginning with full autonomy assumes the solution boundary before acceptable outcomes and failure costs have been defined.
- Option C: A capable model and universal review may reduce some risk, but they do not establish which workflow steps require Claude or define measurable production success.
- Option D: Retrieval may support correspondence analysis, but it addresses data access before the team has determined whether retrieval or automation is appropriate for each step.
Question 5
A telecommunications provider receives 120,000 support requests daily. Eighty-eight percent are routine routing requests that must complete within 1.5 seconds. The remainder include suspected fraud and service termination, where errors are costly and review is acceptable. A multi-agent prototype improves aggregate routing accuracy by 1.2 percentage points but takes 6 seconds and triples cost. Which production architecture should the architect recommend?
Show Answer & Explanation
Correct Answer: C
Correct answer (C): Most requests have a strict latency requirement, while only a smaller segment has a high cost of error and can tolerate review. Segmenting traffic preserves routine-response latency and reserves expensive analysis and oversight for cases where they create business value. Production architecture should optimize quality, latency, cost, and failure impact together rather than maximize one aggregate score.
Why the other options are wrong:
- Option A: The higher accuracy is attractive, but the six-second response violates the 1.5-second requirement for most traffic and triples cost without segment-specific justification.
- Option B: A uniform fast path meets latency, but post-resolution auditing is insufficient for costly fraud or termination errors that should be prevented before action.
- Option D: Asynchronous comparison can support evaluation, but it does not provide timely protection for high-risk cases and imposes multi-agent cost across all requests.
Question 6
A legal-services company has validated one Claude use case that summarizes case intake documents for 300 users. A vendor proposes a general autonomous platform with a planner, agent registry, shared memory, and 40 tools to support possible future use cases. The company has two platform engineers, no confirmed demand beyond intake, and requires clear incident ownership. Which recommendation BEST aligns architecture with business value?
Show Answer & Explanation
Correct Answer: C
Correct answer (C): Only the intake workflow has validated demand, and the small operating team cannot justify the support burden of a broad autonomous platform. A modular implementation meets current needs while preserving reversible interfaces for later expansion. This approach values maintainability and cost per successful business task rather than paying immediately for speculative flexibility.
Why the other options are wrong:
- Option A: A general platform may reduce future migration effort, but its current monitoring, testing, and incident-response costs are unsupported by confirmed demand.
- Option B: Independent stacks can optimize specialized workloads, but building them for hypothetical use cases creates duplication and an excessive ownership burden for two engineers.
- Option D: A single agent may appear operationally simple, but unrestricted tools weaken boundaries and do not provide modular ownership as the use cases expand.
Question 7
A software company uses separate agents to analyze a legacy repository, rewrite modules, compile the result, and repair failures. Each stage depends on artifacts and assumptions from the previous stage. Production trials show that most defects come from inconsistent repository snapshots and lossy handoffs, while repeated context reconstruction accounts for 40% of model cost. What should the architect recommend?
Show Answer & Explanation
Correct Answer: D
Correct answer (D): The work is tightly sequential, and measured failures originate in handoffs and repeated context reconstruction rather than insufficient specialization. A workflow using shared, versioned state and validated artifacts removes the root cause while retaining stage boundaries. Architectural simplicity improves cost, consistency, and diagnosability when autonomous coordination provides no demonstrated benefit.
Why the other options are wrong:
- Option A: A supervisor could detect some inconsistencies, but it adds another model-mediated handoff instead of removing the snapshot and context fragmentation causing defects.
- Option B: Shared repository visibility may reduce inconsistent assumptions, but duplicating the full context across agents increases the identified cost and retains peer-coordination complexity.
- Option C: Redundant workers and judging can improve candidate selection, but they multiply cost and do not establish consistent state across dependent stages.
Question 8
A clinical-review pipeline uses separate Claude calls to extract patient facts, identify guideline criteria, and draft recommendations for clinician approval. Reviewers report that recommendations sometimes rely on facts that cannot be located in the record. The extraction stage currently passes a prose summary downstream, and regulations require traceability to source evidence. Which change MOST directly addresses the problem?
Show Answer & Explanation
Correct Answer: A
Correct answer (A): A structured handoff must preserve provenance and uncertainty at the point where facts are extracted. The explicit requirement is that reviewers trace each recommendation to source evidence, which prose summaries cannot reliably support. The governing principle is to use durable, versioned contracts between probabilistic stages and reject incomplete artifacts rather than asking later stages to infer missing information. In production, this supports validation, replay, schema evolution, and accountable clinician review.
Why the other options are wrong:
- Option B: A consistency check may detect contradictions with the summary, but it cannot recover source provenance that the extraction stage failed to preserve.
- Option C: Longer summaries could retain more context, but they do not create explicit evidence links, uncertainty fields, or machine-verifiable completion states.
- Option D: Central logs aid investigation and audit, but they are a compensating control rather than a reliable source-linked contract between pipeline stages.
Question 9
A regional bank is designing a Claude-assisted dispute service. Customers expect acknowledgment and answers to routine status questions within two seconds. Evidence analysis can take several minutes and tolerate retries, while recommendations to deny a dispute require employee approval because an incorrect denial has regulatory consequences. Which service design BEST aligns with these constraints?
Show Answer & Explanation
Correct Answer: C
Correct answer (C): The workload contains distinct latency and risk classes that should not be forced into one service pattern. Routine, bounded interactions can satisfy the two-second expectation synchronously; long-running evidence analysis belongs in a retryable asynchronous workflow with visible status; and consequential denials require the mandated approval gate. Aligning service boundaries with latency tolerance and failure impact creates more business value than maximizing a single automation metric.
Why the other options are wrong:
- Option A: A single synchronous flow simplifies the interface, but multi-minute analysis cannot meet the two-second interaction target and is poorly suited to retries.
- Option B: Asynchronous execution fits complex analysis, but applying it to routine status requests unnecessarily violates the explicit rapid-response expectation.
- Option D: Specialization may improve modularity, but independent action omits the required approval for denials and does not distinguish synchronous from long-running processing.
Question 10
A retailer wants Claude to modernize a 40-service Java platform. Services share contracts, deployment order matters, and every pull request must be reviewable by a service owner. A prototype gives one agent the entire repository and an open-ended migration objective; it produces large patches that break downstream interfaces. Which decomposition strategy should the architect recommend?
Show Answer & Explanation
Correct Answer: D
Correct answer (D): The migration should be decomposed around architectural dependencies rather than file layout or unconstrained agent decisions. Shared contracts, deployment ordering, and owner review require explicit understanding and planning artifacts before implementation. Bounded work packages limit blast radius, while independent contract verification prevents the implementing model's assumptions from becoming the acceptance standard. This creates reviewable handoffs and preserves cross-service compatibility.
Why the other options are wrong:
- Option A: Directory partitioning enables concurrency, but it ignores the stated cross-service contracts and defers predictable dependency failures until costly integration.
- Option B: More context and smaller commits may improve local execution, but they do not create an explicit dependency plan or independent interface verification.
- Option C: Service specialization is plausible, but local-only context causes agents to miss the shared interfaces that the scenario identifies as the main failure source.
Ready to Accelerate Your CCAR-P Preparation?
Join thousands of professionals who are advancing their careers through expert certification preparation with FlashGenius.
- ✅ Unlimited practice questions across all CCAR-P domains
- ✅ Full-length exam simulations with real-time scoring
- ✅ AI-powered performance tracking and weak area identification
- ✅ Personalized study plans with adaptive learning
- ✅ Mobile-friendly platform for studying anywhere, anytime
- ✅ Expert explanations and study resources
Already have an account? Sign in here
About CCAR-P Certification
The CCAR-P certification validates your expertise in solution design & architecture and other critical domains. Our comprehensive practice questions are carefully crafted to mirror the actual exam experience and help you identify knowledge gaps before test day.
More CCAR-P Practice Questions by Domain
- CCAR-P Practice Questions: Integration — 19% of the exam
- CCAR-P Practice Questions: Evaluation, Testing & Optimization — 16% of the exam
- CCAR-P Practice Questions: Governance, Safety & Risk Management — 14% of the exam
- CCAR-P Practice Questions: Stakeholder Communication & Lifecycle Management — 14% of the exam
- CCAR-P Practice Questions: Claude Models, Prompting & Context Engineering — 13% of the exam
- CCAR-P Practice Questions: Developer Productivity & Operational Enablement — 7% of the exam
Want more? Take the free CCAR-P sample tests across all 7 domains, review the CCAR-P cheat sheet for last-minute revision, or work through the CCAR-P interactive guide.