75only - Ends in 0d 00h 00m 00s - Coupon code = 75only

Pass the Anthropic Claude Certified Developer CCDV-F Questions and answers with Dumpstech

Exam CCDV-F Premium Access

View all detail and faqs for the CCDV-F exam

Practice at least 50% of the questions to maximize your chances of passing.
Viewing page 1 out of 3 pages
Viewing questions 1-10 out of questions
Questions # 1:

Your Claude application's token costs have grown faster than expected. The team has not been tracking token usage by feature, so the team cannot identify which features are driving cost. The team is debating how to respond.

How would you respond?

Options:

A.

Tell the team that cost growth is unavoidable as the application scales and that no investigation will change the trajectory of the application's cost over the next several quarters.

B.

Switch every feature to the smallest model to cut cost broadly across the application during normal operation.

C.

Reduce token usage uniformly across all features by half, applying the cut evenly across the application during normal operation.

D.

Add token usage tracking by feature to the application's logging so the team can identify which features drive cost before recommending changes.

Questions # 2:

You are setting up a Claude application that requires API keys for several external services.

What is the best way to store the keys?

Options:

A.

Put the keys in the application's configuration file and check the configuration file into the team's repository alongside the rest of the source code.

B.

Store the keys in a secrets manager or environment-specific configuration that is not checked into source code, and load them at runtime.

C.

Use a single shared key across all external services, so any developer working on the application can find the keys easily during development.

D.

Email the keys to each developer as needed and have each developer paste the keys into their local environment when they begin working on the application's code.

Questions # 3:

You are designing a Claude application that maintains user sessions across multi-turn conversations. The product team has asked how the application will handle session lifecycle: when sessions should expire, how state is reset, and how the application avoids carrying stale context into new conversations.

How would you design session lifecycle?

Options:

A.

Define explicit session expiration rules, state reset triggers, and rules for starting fresh sessions so stale context does not leak into new conversations.

B.

Define a single short session timeout that applies across all conversations and treat the timeout as the application's complete session lifecycle mechanism.

C.

Define explicit session expiration rules but rely on users to start new conversations when they want fresh context, with no automatic reset triggers in the application.

D.

Define state reset triggers tied to specific application events but apply them across all sessions globally, with no per-session expiration rules.

Questions # 4:

The team is debating whether to integrate with the Claude API directly or through a third-party abstraction layer that supports multiple LLM providers. The team has identified that all current and projected use cases run on Claude, no internal customer has requested LLM portability, and the team's product roadmap does not mention multi-provider support over the next two years. The third-party abstraction would add roughly 15 percent overhead in code complexity and introduce one additional dependency.

Which integration approach would you recommend?

Options:

A.

The third-party abstraction layer, on the grounds that multi-provider support is valuable for any application as a matter of long-term flexibility across vendors.

B.

Both integration paths in parallel, where the application uses each path on different runs to compare which performs better in production over time.

C.

A custom multi-provider abstraction layer the team builds in-house so that the team controls every part of the abstraction the application uses for its API calls.

D.

Direct integration with Claude through its SDK, because no multi-provider need exists and abstraction would add complexity that does not pay off.

Questions # 5:

Your Claude application's API keys are stored in a secrets manager. The team is debating whether the same key should be used in development, staging, and production environments.

How would you handle the keys across environments?

Options:

A.

Use distinct keys for each environment so a compromise in one environment does not affect the others during normal operation across the application's lifecycle.

B.

Rotate the same key across environments at random intervals on the grounds that random rotation provides isolation between environments without requiring distinct keys.

C.

Use the same key across all environments for simplicity and treat the propagation of any compromise as a known operational tradeoff for the team's key management approach.

D.

Use a single development key everywhere on the grounds that production keys are too risky to deploy across the application's three environments during normal operation.

Questions # 6:

The team is debating whether to build a new capability as a custom tool or to use an existing built-in tool that nearly covers the use case but lacks one specific feature.

How would you decide?

Options:

A.

Evaluate whether the missing feature can be addressed by extending the built-in tool or warrants a custom tool, then choose accordingly.

B.

Identify whether the team has previously built similar custom tools and use those precedents to determine which approach is more consistent with the existing codebase.

C.

Examine the custom tool option by scoping the implementation effort and determining whether the additional flexibility justifies the development and maintenance cost.

D.

Review the built-in tool's documentation and assess whether its existing capabilities are sufficient to cover the use case without any modification or extension.

Questions # 7:

A teammate has asked how to extend Claude Code with a custom Skill that the team can invoke during sessions. The Skill consists of a set of instructions and a few support scripts the team wants Claude to be able to call when the Skill is loaded.

Where is the right place to define the Skill?

Options:

A.

Define the Skill as a long inline instruction at the top of every CLAUDE.md file in the team’s repositories so Claude has access to it on every session.

B.

Define the Skill inside the application’s source code as a regular library module and call it from the application code instead of from Claude Code.

C.

Define the Skill in a Skills directory recognized by Claude Code, where Claude can discover and load it during sessions for the team's repositories.

D.

Define the Skill in a personal scratch directory on each developer's machine and load it manually before each Claude Code session that needs it.

Questions # 8:

Your Claude application's error handling currently logs every API error with the same severity level. The team wants to differentiate between errors that should page an on-call engineer and errors that should be logged for later review. How would you structure the error handling?

Options:

A.

Page on every error, on the grounds that paging guarantees that no error is missed by the team during normal operation across the application's lifecycle.

B.

Disable logging for any error that does not page, treating non-paging errors as not worth recording for later review either.

C.

Categorize errors by severity based on impact and recoverability, then route each category to the appropriate channel for paging or logging.

D.

Log every error with the same severity, on the grounds that differentiating severity adds complexity that does not pay off in most application setups over time.

Questions # 9:

You are designing an agent that handles a complex claim-processing workflow. Each claim moves through fact extraction, eligibility evaluation, and a decision step. The three subtasks have distinct success criteria, and some claims require iteration between fact extraction and eligibility evaluation before a decision can be reached.

Which agent pattern would you apply?

Options:

A.

A graph-based pattern that lets the agent move between subtasks based on the state of each claim, with each subtask evaluated against its own criteria.

B.

A streaming pattern that emits partial decisions as the agent processes each claim, refining the output until a final decision emerges from the stream.

C.

A single tool-use loop pattern that gives one agent access to all the tools needed for fact extraction, eligibility evaluation, and decision-making.

D.

A linear chain pattern that processes every claim through fact extraction, then eligibility evaluation, then decision, with no return paths between subtasks.

Questions # 10:

Your agent is processing tasks that take 30 to 60 minutes to complete. Each task has well-defined intermediate checkpoints, and the team wants the agent to be able to resume from the most recent checkpoint if a process is interrupted.

How would you implement this resumability?

Options:

A.

Increase the agent's timeout to several hours so that interruptions become rare enough to ignore in practice.

B.

Apply a checkpointing pattern that persists the agent's intermediate state and reloads that state when resuming an interrupted task.

C.

Run two copies of the agent in parallel for every task and use whichever one finishes first as the source of truth.

D.

Restart the task from the beginning whenever a process is interrupted.

Viewing page 1 out of 3 pages
Viewing questions 1-10 out of questions