Month End Special - 75% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: big75certs

CCDV-F Leak Questions

Page: 5 / 7
Total 95 questions

Claude Certified Developer-Foundations Questions and Answers

Question 17

You are designing a Claude application that helps medical researchers analyze multi-step clinical case studies. The application must work through differential diagnoses by considering symptom patterns, weighing evidence across competing hypotheses, and showing intermediate reasoning steps before producing a final recommendation. The team is choosing among Claude's available model options.

The model option best suited to this use case is...

Options:

A.

Zero-shot prompting alone with no model option adjustments, which keeps the application's configuration as simple as possible.

B.

Extended thinking, which lets the model reason through the differential diagnosis steps before producing the final recommendation.

C.

Fast mode, which prioritizes the lowest possible latency at the expense of reasoning depth on complex tasks.

D.

A smaller model with a tighter context window, which encourages the model to focus its limited capacity on the task.

Question 18

Your Claude agent has too many tools, and many of them have overlapping functionality. The agent often picks an inappropriate tool when several could plausibly handle a request.

How would you address the tool selection problem?

Options:

A.

Add more tools to cover every variation of the requests the agent handles, on the grounds that more tools give the agent more accurate options to choose from.

B.

Remove all tools and rely on the agent's general capability instead, with the application losing the workflows that previously relied on tools.

C.

Add detailed examples to each tool's description so the agent can match incoming requests to the right tool by example, treating the examples as the team's selection mechanism.

D.

Restructure the tool set by consolidating overlapping tools, removing unused tools, and clarifying tool descriptions so each tool has a distinct purpose.

Question 19

Your team is integrating Claude into an existing REST API service. The service handles concurrent requests, and you are deciding how to structure the Claude API calls within the existing async codebase.

How would you structure the Claude calls?

Options:

A.

Run Claude API calls in a separate thread pool isolated from the rest of the service so the main event loop is not affected.

B.

Replace the existing async REST service with a synchronous service to match the call style of synchronous Claude SDK clients.

C.

Use the Claude SDK's async client and structure Claude calls as awaitable operations alongside the rest of the service's async code.

D.

Make synchronous Claude API calls and block the async event loop until each call completes before processing the next request.

Question 20

Your application uses the Messages API to handle multi-turn conversations. Each new turn resends the entire conversation history, and your token costs are growing as conversations get longer. You suspect there is a more efficient approach.

How would you address this?

Options:

A.

Use prompt caching to reuse the static portions of the conversation context across turns instead of paying for them at the normal input-token rate on every request the application sends.

B.

Switch to the Batch API for every turn so the per-call cost is reduced, treating the batch as the team's primary cost-control mechanism for multi-turn work.

C.

Truncate every conversation to the last two messages so that token usage stays low and costs remain predictable across the application's normal operation.

D.

Summarize each conversation after every turn and replace the full history with the summary on the next request, reducing token count at the cost of fidelity.

Page: 5 / 7
Total 95 questions