CCDV-F domain - 33.1% of the exam

Applications and Integration

Applications and Integration is 33.1% of the Claude Certified Developer - Foundations (CCDV-F) exam. These are the objectives it covers, each with practice questions, with every answer explained.

Objectives in this domain

Sample question from this domain

Free sampleApplications and Integrationmedium

A publisher states a business requirement that every one of roughly 20,000 manuscripts submitted during the day must have a summary stored before the editorial meeting the following morning. No person waits on any individual summary, and the finance owner has set a fixed monthly ceiling for the whole job. Which infrastructure requirement correctly follows from that business requirement?

  • AThe summaries must be produced through realtime Messages API calls issued in a wide parallel fan-out, so that the whole set completes as early in the night as possible.
  • BThe summaries must be submitted as an asynchronous batch job with a per-item identifier, since the requirement sets a deadline for the whole set rather than a response time for any one item. Correct
  • CThe summaries must be generated on demand when an editor opens a manuscript, so that the system stores nothing overnight and consumes capacity only for manuscripts that are actually read.
  • DThe summaries must be produced by the largest available model with a reduced output token limit, so that quality is maximised while the fixed monthly ceiling is respected.
Translate a bulk overnight deadline with no waiting user into an asynchronous batch processing requirement rather than a realtime one. The business requirement fixes a deadline for a whole set of work and names no per-item response time, so the derived infrastructure requirement is asynchronous bulk submission with per-item identifiers. Realtime request paths exist to serve a waiting caller, and paying that cost where no caller waits raises spend and throughput pressure without satisfying anything the business actually asked for.

Why A is wrong: Tempting because parallel realtime calls do finish sooner, but nothing in the requirement values early completion, and a wide synchronous fan-out spends more per manuscript and pushes against request throughput limits for no stated benefit.

Why B is correct: Correct because the stated business requirement is a bulk overnight deadline with no waiting user, which is exactly the latency-tolerant shape the Message Batches API serves, and a per-item identifier lets each summary be matched back to its manuscript.

Why C is wrong: Tempting as a cost saving, but it contradicts the stated requirement that every summary is stored before the meeting, and it converts a latency-tolerant job into one that blocks an editor at the moment of reading.

Why D is wrong: Tempting because it appears to trade quality against cost, but a reduced output limit truncates summaries rather than saving money proportionally, and model size is not what the stated deadline and ceiling actually constrain.

Other domains in this exam

See also the CCDV-F cert hub, the study guide, and the cheat sheet.

Examworthy is not affiliated with or endorsed by Anthropic. Original, blueprint-aligned practice material only.