AnthropicApplications and Integration

Streaming & UI — CCDV-F Practice Question

A representative Claude Certified Developer - Foundations (CCDV-F) exam question on Streaming & UI. Work through it below, then read why each option is right or wrong.

This question is part of the free Claude Certified Developer - Foundations practice test.

Short answer

The correct answer is B. Consume the event stream, render content deltas, and read the final message metadata when the stream completes.

Streaming exposes incremental content events and a final completed message with authoritative metadata. Character estimates and repeated requests are inaccurate and wasteful.

The Question

A chat UI must show text as it is generated and still record final token usage. Which implementation is appropriate?

APoll the same non-streaming request repeatedly
BConsume the event stream, render content deltas, and read the final message metadata when the stream completesCorrect
CEstimate usage from the number of UI characters
DOpen a new request for every token

Why B is correct

Streaming exposes incremental content events and a final completed message with authoritative metadata. Character estimates and repeated requests are inaccurate and wasteful.

Why the other options are wrong

Option A: Poll the same non-streaming request repeatedly

Option A does not satisfy the requirement in the scenario. Review the explanation above: the correct choice (B) is the only one that fully meets every constraint stated in the question.

Option C: Estimate usage from the number of UI characters

Option C does not satisfy the requirement in the scenario. Review the explanation above: the correct choice (B) is the only one that fully meets every constraint stated in the question.

Option D: Open a new request for every token

Option D does not satisfy the requirement in the scenario. Review the explanation above: the correct choice (B) is the only one that fully meets every constraint stated in the question.

Key idea: Streaming & UI

Streaming exposes incremental content events and a final completed message with authoritative metadata. Character estimates and repeated requests are inaccurate and wasteful. On the CCDV-F exam, questions in the "Applications and Integration" domain test whether you can map a scenario's constraints to the right choice. Read the requirement carefully, eliminate options that violate any single constraint, and pick the one that satisfies all of them with the least operational overhead.

Ready to see how you'd score?

Take the free practice quiz and find out which Claude Certified Developer - Foundations domains you need to focus on. No signup required.

Practice 5 similar questions

Same cert, same or adjacent domain. Use these after reviewing the explanation.

Related Claude Certified Developer - Foundations Practice Questions

Official sources used

Verify program and exam details at the source before scheduling.