8 real CCAR-F flashcards, sampled from 4 of the 5 domains the exam tests, heaviest first. Each concept card is paired with the misconception card built from the tempting wrong answer - the trap most decks skip. No account, no card.
The full deck has 506 flashcards, and a free account opens 40 of them across every domain. For a domain-by-domain breakdown and a study plan, read the CCAR-F study guide.
schoolConceptAgentic Architecture & Orchestration
Why did an agent keep calling process_refund without a preceding lookup_order, despite a CLAUDE.md rule requiring it?
arrow_downward
CLAUDE.md text enters the model's context and biases sampling, so compliance is high but never total. A prerequisite that must hold every time needs a PreToolUse hook, which runs in the harness rather than the model, inspects the pending call, and can refuse it before it reaches the tool.
errorMisconceptionAgentic Architecture & Orchestration
Tool call ordering between two MCP tools is enforced by the server that publishes them.
arrow_downward
MCP servers do hold connection state, but the protocol exposes independent tools with no cross-tool ordering semantics. There is no server-side sequencing rule that could lapse and explain out-of-order calls.
schoolConceptClaude Code Configuration & Workflows
When does a subdirectory CLAUDE.md actually get loaded into a Claude Code session?
arrow_downward
Memory files are scoped to the part of the tree they sit in. The root CLAUDE.md applies to the whole repository from the start, but a nested CLAUDE.md is only brought into context when Claude Code reads or edits files under that directory. A session that never leaves one package never has cause to load another package's memory file.
errorMisconceptionClaude Code Configuration & Workflows
A PostToolUse hook that logs every migration command with its target connection string, reviewed weekly, prevents the outage.
arrow_downward
The logging is genuinely useful for accountability, but it fires after the command has already run, so it improves detection of the outage rather than preventing it.
schoolConceptPrompt Engineering & Structured Output
Why does an instruction like 'flag any potential security concern' produce inconsistent CI review results across pull requests?
arrow_downward
Precision depends on where the decision boundary sits, not on the category name. 'Flag any potential security concern' gives the model a class name without a membership rule, so each run must infer its own threshold from the diff in front of it. Two equivalent code snippets can land on either side of that inferred line, producing the same-code-different-verdict pattern. Stating the boundary explicitly, such as requiring attacker-controlled input reaching the construct, replaces the inference with a stated test.
errorMisconceptionPrompt Engineering & Structured Output
A schema requiring file and line fields guarantees that every finding came from the reviewed pull request's diff rather than the wider repository.
arrow_downward
The schema only requires a string and an integer in those fields, not that the position falls inside the changed lines. Confirming a finding sits within the diff needs a separate check the pipeline is not running.
schoolConceptTool Design & MCP Integration
How does an agent decide which of two MCP tools to call when both look like they could handle the same request?
arrow_downward
The model matches the request against each tool's name, description and input schema. If two descriptions state the same capability in different words, nothing distinguishes them, so selection falls to incidental wording in the message and looks random across many calls.
errorMisconceptionTool Design & MCP Integration
A PostToolUse hook that alerts an on-call engineer whenever process_refund is called meets an incapability requirement.
arrow_downward
A hook is the right family of mechanism and gives a deterministic signal, but PostToolUse runs after the call has executed, so the refund has already been paid by the time the alert fires.
Examworthy is not affiliated with or endorsed by Anthropic. All flashcards are original, drawn from our own blueprint-aligned practice questions. We never reproduce live exam items. CCAR-F and related marks belong to their respective owners.