Claude Certified Developer – Foundations Practice Test
Free practice for Anthropic's Claude Certified Developer – Foundations exam (CCDV-F) in English, Chinese, and Spanish — agents & workflows, Messages API integration, model selection & optimization, prompt/context engineering, security, and tools & MCP.
Choose a domain
Practice questions based on the official Claude Certified Developer – Foundations (CCDV-F) exam guide and Anthropic's public documentation. This is an independent study tool, not affiliated with or endorsed by Anthropic, and does not grant certification. The real exam is 53 questions, 120 minutes, passing at a scaled 720/1000, delivered via Pearson VUE ($125).
About the Claude Certified Developer – Foundations (CCDV-F) exam
Claude Certified Developer – Foundations (exam code CCDV-F) is Anthropic's certification for engineers who build, integrate, and ship production Claude applications — typically with 1–5 years of software experience and 6+ months hands-on with LLMs, proficient in Python and/or TypeScript. The real exam has 53 questions in 120 minutes across eight domains; Applications & Integration alone carries 33.1%, followed by Model Selection & Optimization (16.8%), Agents & Workflows (14.7%), Prompt & Context Engineering (11%), Tools & MCPs (10.6%), Security & Safety (8.1%), Claude Code (3.1%), and Eval/Testing/Debugging (2.6%). Passing is a scaled 720/1000; the fee is $125 via Pearson VUE with a 12-month validity. Our free practice questions mirror those domains and weights in English, Simplified Chinese, and Spanish.
How to Study for the Claude Certified Developer Exam
Build something real against the Messages API before you sit the exam — most integration questions test facts you internalize in an afternoon of coding: model, max_tokens, and messages are the required parameters; the first message must be role "user"; the API is stateless so you resend the whole conversation; stream: true delivers content_block_delta events for perceived-latency wins; images ride in content blocks, not a separate endpoint; thinking budget_tokens must be smaller than max_tokens. Prompt caching is exact-prefix matching — a timestamp at the top of your system prompt silently kills every cache hit, and adding a tool invalidates the whole cache because tools render before system and messages.
For agents, internalize Anthropic's "Building Effective Agents": workflows (predefined code paths) for fixed, predictable steps; agents (model-directed loops) only when the path can't be known in advance; and always start with the simplest thing that works. Security questions reward the same instincts as classic appsec: treat model output and retrieved content as untrusted input, delimit user content so injected "ignore previous instructions" text stays data, scope tools to least privilege, and use hooks — not prompt rules — when a guarantee is required. For Claude Code, know the config surfaces (CLAUDE.md at repo root for shared conventions, settings.local.json for personal permissions, -p --output-format json for CI) and that subagents isolate noisy searches in their own context. Then take our timed 53-question mock to rehearse the real format.
FAQ
Are these the real exam questions?
No. Live exam content is confidential and NDA-protected. Our questions are original, written against the publicly published CCDV-F exam guide (domains, skill weights, and sample-question style) and Anthropic's official API, Claude Code, and MCP documentation — same knowledge base and difficulty, zero copied items.
What should I focus on, given the domain weights?
A third of the exam is Applications & Integration, so master the Messages API cold: required parameters, statelessness (resend full history), streaming events, vision content blocks, extended thinking budgets, prompt-caching prefix rules, the Batches API tradeoffs, and Bedrock/Vertex differences. The next-biggest block is Model Selection & Optimization — model-tier tradeoffs, token economics, and caching. Claude Code and evals are individually small (under 6% combined) but easy points if you know the CLI flags and grading methods.
How does this differ from the Architect – Foundations exam?
The Developer exam goes deeper on hands-on implementation: raw API mechanics, SDK usage, streaming, caching internals, secrets management, and MCP server development. The Architect – Foundations exam emphasizes system-level judgment: orchestration patterns, configuration strategy, and reliability design. Many candidates take both; the knowledge overlaps roughly a third. Both pass at 720/1000 and cost $125.