Systems session 4/4 · Quiz & review

Choosing an LLM surface: chat, search, code, and voice

10 questions, one correct answer each. The goal is to check whether you can predict what a surface does to the context window and which verification it demands.

1. What does "choosing a surface" actually decide?

Show answer

B — The same underlying model is often reachable through several surfaces. What changes is the material injected into the window: retrieved passages, repository files, or an uploaded corpus.

2. A plain chat turn with no tools answers a question about last week's news. What is the dominant risk?

Show answer

B — Without retrieval the model can only draw on parameters fixed at training time, so recent events are either missing or confabulated.

3. Enabling a retrieval tool changes the failure mode to…

Show answer

B — Retrieval reduces staleness but introduces new dependencies: which sources were found, which passages were selected, and whether the summary is faithful to them.

4. What is the minimum acceptable way to verify a retrieval-backed factual claim?

Show answer

C — The snippet and the citation list are both generated text. Only opening the source turns a citation into evidence.

5. Why prefer a code-executing surface for arithmetic over a plain chat turn?

Show answer

B — The arithmetic leaves the token stream and runs deterministically, and the emitted program becomes the artifact a human can review.

6. A code-executing surface prints a plausible average. What should you review first?

Show answer

B — A correct-looking number can come from wrong code — a bad filter, a dropped null, a wrong column. The program is the evidence.

7. What is the operating cost of pasting a very long document into the context window?

Show answer

B — Attention and decoding both scale with the tokens held in the window, so a long context is metered on every turn it stays in.

8. A colleague says "extrapolate this trend to 2030" and the surface returns a confident figure. What is the honest reading?

Show answer

C — Exact arithmetic on the observed range says nothing about whether the trend continues. The assumption sits in the model of the world, not in the calculation.

9. Persistent memory and custom instructions are best understood as…

Show answer

B — They silently carry state across sessions, which is convenient but also accumulates personal information that deserves periodic review.

10. Which selection rule best summarises the session?

Show answer

C — Capability and cost are traded per question. The discipline is matching the surface to the question, then performing the verification that surface demands.

Scoring

8-10 correct: you can select a surface and justify the verification it requires. 5-7: revisit the failure-mode section; you likely still treat retrieval as a correctness guarantee. Below 5: re-run Lab A and Lab B before moving on, focusing on what actually entered the context window.

Learner course · Go to the exercises