3. Which of these can be a single token?
Show answer
C — Subword vocabularies contain fragments, punctuation, whitespace-prefixed pieces and byte-level fallbacks, which is how unknown text is still encodable.
5. A request needs 7,000 input tokens and a 1,500-token answer, in a 8,000-token window. What happens?
Show answer
B — Input plus reserved output must fit in the same window. Here 8,500 exceeds 8,000, so either the input is reduced or the generation stops early.
6. Why does French prose usually cost more tokens than the equivalent English prose?
Show answer
B — Merge rules are learned from training data. Text that is under-represented in that data is split into smaller, more numerous pieces, often 15 to 30 percent more for French, though the exact figure depends on the tokenizer.
7. What is the correct use of a characters-per-token rule of thumb?
Show answer
C — The ratio varies with language, formatting and content type. It is useful for early sizing, but any check that gates or truncates a request must use the actual tokenizer.
8. Why must the tokenizer and the chat template be pinned to the same model revision?
Show answer
B — A revision can change the vocabulary, the special tokens or the template formatting. A mismatched pair still runs, which is what makes the failure hard to notice.
10. Which test set best exercises a tokenization pipeline?
Show answer
C — Failures concentrate at the edges: non-Latin scripts, byte-level fallbacks, template special tokens, and text cut in the middle of a multi-token character.