Free CCDV-F Quick Practice Test — 10 Questions Across All 8 Domains
This free CCDV-F quick-start practice test includes 10 mixed-domain questions sampled from the FlashGenius Claude Certified Developer – Foundations question bank. Perfect for a fast readiness check before committing to full-length mock exams.
What's on This CCDV-F Quick Test?
10 Free Claude Developer Practice Questions with Answers
Sample Question 1 — Model Selection and Optimization
A developer is building an internal contract review assistant. It summarizes clauses and flags unusual obligations for a legal operations team, but lawyers still review the final output.
Artifact:
Quality need: strong reasoning over long legal text
Latency need: interactive responses under a few seconds when possible
Budget: moderate; cannot use the highest-cost path for every request
Risk: important, but not autonomous final decision-making
Which model strategy is most appropriate as the default?
- A. Use Sonnet as the default and evaluate edge cases. (Correct answer)
- B. Use Haiku for all reviews to minimize cost.
- C. Use Opus for every clause regardless of complexity.
- D. Use fast mode only and skip quality evaluation.
Correct answer: A
Explanation: Correct answer (A): Sonnet is commonly the balanced default when an application needs strong quality while preserving better latency and cost than the most capable model. The task requires meaningful reasoning over legal text, so the smallest model for all cases is risky, but the scenario does not justify using the most expensive model for every request because lawyers review outputs and budget is moderate.
Why the other options are wrong:
- Option B: Haiku may reduce cost, but the scenario calls for strong reasoning over legal language. Choosing it for all reviews without validation would underweight quality requirements.
- Option C: Opus may help the hardest cases, but the scenario states a moderate budget and interactive latency needs. Using it for every clause is not the best default.
- Option D: Fast mode may improve latency, but skipping quality evaluation is inappropriate for a legal-review workflow with stated reasoning requirements.
Sample Question 2 — Agents and Workflows
A developer is building a Claude-powered internal research assistant. User requests vary widely, and the assistant must decide whether to search documentation, inspect previous notes, ask a clarifying question, synthesize findings, or stop based on intermediate results. Which design is most appropriate?
- A. A fixed workflow with the same steps for every request
- B. An agent loop that plans, acts, observes, and stops (Correct answer)
- C. A batch job that summarizes all notes nightly
- D. A single prompt that forbids asking clarifying questions
Correct answer: B
Explanation: Correct answer (B): An agent loop is appropriate because the task requires dynamic planning, choosing among actions, reacting to intermediate observations, and deciding when to ask for clarification or stop. These choices cannot be fully enumerated as a fixed sequence for every research request.
Why the other options are wrong:
- Option A: A fixed workflow may seem easier to operate, but it is too rigid for requests that require different paths based on intermediate findings.
- Option C: A nightly batch summary may be useful for a separate reporting use case, but it does not support interactive planning and adaptive research.
- Option D: Forbidding clarifying questions removes a useful agent behavior. The scenario explicitly includes cases where clarification may be the right next action.
Sample Question 3 — Applications and Integration
A customer-facing writing assistant often produces responses that take 8 to 12 seconds. Product wants users to see useful text as soon as it is generated, while still validating the final response before saving it. What is the most appropriate integration change?
- A. Enable streaming and render partial output while retaining final response handling. (Correct answer)
- B. Switch the feature to Message Batches API for all user requests.
- C. Remove response validation because streaming already confirms correctness.
- D. Concatenate all prior user sessions to make output start faster.
Correct answer: A
Explanation: Correct answer (A): Streaming is an integration pattern for receiving partial output progressively, which improves responsiveness in user-facing interactions. The application should still handle and validate the final response because streaming changes delivery behavior; it does not guarantee correctness or remove downstream integration responsibilities.
Why the other options are wrong:
- Option B: Batch processing is for requests that do not need immediate user-facing responses, so it conflicts with the interactive product goal.
- Option C: Streaming changes delivery timing, not correctness guarantees; final response handling and validation are still needed.
- Option D: Adding unrelated session history creates stale context and is not a valid way to improve progressive rendering.
Sample Question 4 — Eval, Testing, and Debugging
A staging chatbot suddenly fails before returning any assistant message. The trace shows:
```
request_id: req_4821
POST /v1/messages
status: 401
response: {"error":"invalid API key"}
model_response_received: false
retry_count: 3
```
What is the BEST classification of this failure?
- A. A model-output failure caused by an unhelpful response
- B. An integration-layer failure caused before model generation (Correct answer)
- C. A schema validation failure in the post-processing layer
- D. A prompt-quality failure caused by unclear instructions
Correct answer: B
Explanation: Correct answer (B): The log shows an HTTP 401 and explicitly says no model response was received. That places the first failure boundary before Claude generated output, so the correct diagnosis is an integration-layer issue involving authentication or request setup. Retrying without fixing the API key will not address the root cause.
Why the other options are wrong:
- Option A: A model-output failure may seem plausible because the chatbot produced no useful answer, but the log shows no model response was generated.
- Option C: Schema validation is a post-processing concern, but the request failed at authentication before any response content could be validated.
- Option D: Prompt quality can affect generated content, but the model was never reached, so prompt changes are not the right diagnosis.
Sample Question 5 — Tools and MCPs
A developer adds a customer lookup tool to a Claude-powered support app. In testing, Claude emits the following tool request, but no customer data appears in the conversation.
Artifact:
```
assistant tool_request:
name: lookup_customer
arguments: { "email": "sam@example.com" }
app log:
received assistant message
no tool runner configured for lookup_customer
returned final text to user
```
What is the BEST next implementation step?
- A. Add a harness step that validates the arguments, calls lookup_customer, and returns the tool result to Claude. (Correct answer)
- B. Rename the tool to a shorter name so Claude can execute the customer lookup directly.
- C. Move the customer API key into the prompt so Claude can complete the lookup itself.
- D. Ask Claude to avoid tool calls and infer customer details from the conversation context.
Correct answer: A
Explanation: Correct answer (A): Claude emitting a tool request does not execute the external action. The surrounding application or agentic harness must receive the tool call, validate its arguments against the schema, dispatch the mapped function or API request, and provide the tool result back to Claude so it can continue the task.
Why the other options are wrong:
- Option B: A clearer tool name can improve selection, but the trace shows the tool was already selected and no runner executed it.
- Option C: Putting credentials in the prompt is not an execution mechanism and would create unnecessary credential exposure risk.
- Option D: Inferring customer data from context avoids the required external lookup and would not produce reliable account information.
Sample Question 6 — Claude Code
A monorepo uses Claude Code across frontend and backend teams.
Repository layout:
```
/CLAUDE.md
"All code must use the shared logging wrapper."
/web/CLAUDE.md
"Use the design-system components for UI work."
/api/
payment handlers, database migrations, service tests
```
The API team wants Claude Code to consistently follow API-only conventions for migrations and service tests without affecting web work. Where should the team place this guidance?
- A. In a new /api/CLAUDE.md file near the API code. (Correct answer)
- B. In /web/CLAUDE.md so all nested teams can see it.
- C. In Agent Memory for the API team's lead developer.
- D. In settings.json as a repository-wide configuration value.
Correct answer: A
Explanation: Correct answer (A): A CLAUDE.md hierarchy lets teams place broad guidance at the repository root and narrower guidance closer to the subdirectory it governs. API-specific conventions belong near the API code so they apply to that scope without polluting unrelated web guidance.
Why the other options are wrong:
- Option B: The web CLAUDE.md is scoped to frontend work and is the wrong location for API-only guidance.
- Option C: Agent Memory is not the best place for shared API project policy because it is not explicit repository guidance for all contributors.
- Option D: settings.json configures Claude Code behavior, but coding conventions for a subdirectory belong in human-readable CLAUDE.md guidance.
Sample Question 7 — Claude Code
A team repeatedly tells Claude Code the same repository conventions at the start of every session. They want the guidance to be durable, reviewable, and reused by all contributors.
Current onboarding note:
```
Before using Claude Code, paste:
- Use pytest for backend tests.
- Prefer existing repository helpers over new utilities.
- Follow the service naming pattern in /services.
```
What is the BEST primary change?
- A. Move the conventions into a repository CLAUDE.md file. (Correct answer)
- B. Store the conventions in Agent Memory for each developer.
- C. Add the conventions as comments in settings.json.
- D. Paste the conventions into every new session prompt.
Correct answer: A
Explanation: Correct answer (A): CLAUDE.md is the appropriate Claude Code mechanism for durable, human-readable project or repository instructions. It avoids repeated ad hoc prompting and makes conventions easier for the team to review and maintain across sessions and contributors.
Why the other options are wrong:
- Option B: Agent Memory can retain context or preferences, but shared project conventions should be explicit and reviewable in repository guidance rather than hidden per developer.
- Option C: settings.json is for Claude Code configuration, not for storing human-readable coding standards as comments or policy guidance.
- Option D: Repeating the guidance manually is exactly the brittle workflow the team is trying to eliminate.
Sample Question 8 — Prompt and Context Engineering
A claims-review app sends Claude the following context before each decision:
Context snapshot:
- 14 prior chat turns from the adjuster
- Full OCR text of every uploaded document, including unrelated invoices
- Complete raw output from a policy lookup service
- Current task: decide whether the latest roof-damage claim needs escalation
The app is becoming slower and Claude sometimes mentions irrelevant invoices. What is the best primary context-engineering change?
- A. Prune or summarize irrelevant history and include only selected evidence needed for the current claim (Correct answer)
- B. Add a stronger final instruction telling Claude to ignore unrelated invoices and be concise
- C. Keep the full context but move all OCR text before the policy lookup output
- D. Add several examples of correct escalations after the raw policy lookup output
Correct answer: A
Explanation: Correct answer (A): The failure is caused by context bloat and irrelevant content influencing the response. A finite context window requires selecting, pruning, or summarizing the information that is actually needed for the current task rather than blindly sending all history and raw outputs.
Why the other options are wrong:
- Option B: A stronger reminder may appear helpful, but it leaves the irrelevant content in context and does not address the main cause of drift and cost.
- Option C: Reordering large irrelevant content may slightly affect salience, but it still preserves context bloat and unrelated evidence.
- Option D: Few-shot examples can help formatting or judgment patterns, but adding more tokens after bloated tool output worsens the context-size problem.
Sample Question 9 — Prompt and Context Engineering
A developer is building a Claude-powered support triage feature. The application must always respond in the company's escalation format, regardless of how individual customers phrase their tickets. Where should the developer place this durable formatting and behavior guidance?
- A. In the developer-controlled system instructions, separate from the customer's ticket text (Correct answer)
- B. At the end of each customer's user message, after the ticket content
- C. Inside the retrieved knowledge-base article that is closest to the ticket
- D. Only in a few-shot example stored after the current user request
Correct answer: A
Explanation: Correct answer (A): Durable application behavior should be placed in a developer-controlled instruction location and kept separate from task-specific user content. This makes the intended behavior more stable and avoids mixing customer-provided data with instructions that govern the application.
Why the other options are wrong:
- Option B: Appending instructions to user content may appear convenient, but it mixes trusted application behavior with task-specific input and can make the prompt harder to reason about.
- Option C: Retrieved documents can provide evidence, but they should not be used as the primary location for durable behavior rules because retrieval may vary by request.
- Option D: Few-shot examples can demonstrate a pattern, but relying only on an example after the user request is less direct than placing the behavior in controlled instructions.
Sample Question 10 — Applications and Integration
A team needs to summarize 120,000 archived support tickets each night. No user is waiting for an immediate response, and the results only need to be available in the data warehouse by 8 a.m. Which integration approach is the best fit?
- A. Use synchronous Messages API calls from the web tier for each ticket.
- B. Use the Message Batches API for the overnight processing job. (Correct answer)
- C. Use streaming responses so every summary starts displaying immediately.
- D. Keep one long conversation session open for all ticket summaries.
Correct answer: B
Explanation: Correct answer (B): The Message Batches API is best for large numbers of requests that do not require immediate, user-facing responses. This workload is high-volume, latency-tolerant, and scheduled as an offline job, so batch processing matches the operational requirement better than synchronous realtime calls.
Why the other options are wrong:
- Option A: Synchronous Messages API calls are appropriate for interactive or latency-sensitive flows, but this workload is offline and high volume.
- Option C: Streaming improves perceived responsiveness when a user is waiting, but it does not make an overnight batch job a better fit.
- Option D: A single long session would mix unrelated tickets and create poor session boundaries rather than matching the batch workload.
About the CCDV-F Exam
- Questions: 53
- Time: 120 minutes
- Passing score: 720 / 1000 (scaled)
- Cost: $125 USD
- Validity: 12 months
- Provider: Anthropic
Start the free CCDV-F quick practice test now | All CCDV-F domains | All Sample Tests