Chunking & Indexing Strategies — Practice quiz

Untimed. Answers are graded when you submit, with explanations and spaced-repetition scheduling.

  1. Question 1easy

    Why is chunking often described as the highest-leverage knob in a RAG system?

  2. Question 2easy

    You size chunks at '200 words'. Why can this silently break your token budget?

  3. Question 3easy

    What does a tokenizer like tiktoken give you that a plain .split() does not?

  4. Question 4medium

    In recursive character splitting, what is the ordering strategy for separators?

  5. Question 5medium

    What is the main advantage of splitting on natural boundaries over a fixed token window?

  6. Question 6medium

    Which capabilities does attaching metadata (source, section, position) to chunks unlock? (Select all that apply)

    Select all that apply.

  7. Question 7medium

    When you filter retrieval by metadata (e.g. source='pricing.md'), when does the filter apply relative to similarity scoring?

  8. Question 8hard

    Parent-child (hierarchical) indexing resolves which tension?

  9. Question 9hard

    In the 'small-to-big' parent-child pattern, what is embedded and what is handed to the generator?

  10. Question 10hard

    When a single paragraph exceeds max_tokens, what does a well-built recursive splitter do? (Select all that apply)

    Select all that apply.

  11. Question 11medium

    For an FAQ where each entry is a self-contained Q&A pair, what chunking approach usually works best?

  12. Question 12medium

    How should you decide on a chunk size for a new corpus?

  13. Question 13medium

    What unit should you size chunks in to reliably respect embedding and context-window limits? (one word)

  14. Question 14hard

    Name the indexing pattern that embeds small chunks for precise matching but returns larger surrounding chunks for context.

0 / 14 answered