8 real CCDV-F flashcards, sampled from 4 of the 8 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 558 flashcards, and a free account opens 40 of them across every domain. For a domain-by-domain breakdown and a study plan, read the CCDV-F study guide.
schoolConceptApplications and Integration
A bulk overnight deadline with no user waiting on any single item: what shape of infrastructure requirement does that business requirement produce?
arrow_downward
Asynchronous bulk submission with a per-item identifier. The requirement fixes a deadline for the whole set and names no per-item response time, which is the latency-tolerant shape the Message Batches API serves, and the identifier lets each result be matched back to its source item.
errorMisconceptionApplications and Integration
I can instruct the model in the system prompt to state the policy revision it used, and sample answers monthly to confirm it complies.
arrow_downward
Tempting because the answers would usually carry a revision label, but an instruction is guidance the model can omit under pressure, so the audit trail would depend on generated text rather than on a recorded fact.
schoolConceptModel Selection and Optimization
Why must an input length guard be measured in tokens rather than in words?
arrow_downward
A tokeniser splits text into subword pieces, so ordinary English words often cost about one token each while code, punctuation-dense log lines and non-English words split into several tokens apiece. A word or character ceiling therefore approximates the real budget unevenly and lets dense text past. Counting tokens with a tokeniser measures the same unit the request is bounded by, so the guard and the limit agree.
errorMisconceptionModel Selection and Optimization
A character count is finer grained than a word count, so surely it is a stable proxy for the model's input budget.
arrow_downward
It is tempting because characters are finer grained than words, but the ratio of characters to tokens still varies by script and by content, so a fixed character ceiling either rejects valid prose or lets dense text through. Only a tokeniser measures the unit the request is bounded by.
schoolConceptAgents and Workflows
Five invoice steps always run in the same order, each step must be individually attributable, and the sequence must be reproducible months later. Where does the control flow belong, and why?
arrow_downward
In application code. Agents earn their cost by choosing their own path when the path cannot be known in advance. Here the sequence is known, so coded control flow makes the ordering deterministic and gives every step its own boundary for logging, retry and audit, while Claude is still called at the steps where language understanding is genuinely required.
errorMisconceptionAgents and Workflows
If an agent can call the same five tools, giving it the steps in its system prompt and letting it decide the order should be equivalent and save me writing orchestration code.
arrow_downward
Tempting because a model with the same five tools looks equivalent and needs less orchestration code. It is wrong because the order becomes a model decision that can differ per invoice, which defeats both the per-step failure attribution and the reproducibility requirement.
schoolConceptPrompt and Context Engineering
A run keeps exhausting its context because each tool call returns thousands of lines of markup for ten useful lines. Where is that cured?
arrow_downward
This is bloat, and bloat is fixed where the payload enters the conversation. Filter the result in the tool handler so only the useful lines are appended, and discard results whose finding has already been recorded as a note. Both reduce what the request carries without changing the number of calls or the quality of the final report.
errorMisconceptionPrompt and Context Engineering
Surely I can just let the markup accumulate and rely on compaction to summarise it once the working context nears its limit?
arrow_downward
Tempting because compaction does reclaim room in a long conversation, but it is the wrong instrument here: it summarises material that should never have been carried in the first place, and the payloads keep arriving at the same rate.
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. CCDV-F and related marks belong to their respective owners.