Français
Applied AI · Intermediate 🟡 · Session 4
❓ Interactive quiz
← Return to program 📄 Source .md

Quiz — Session 4: RAG, giving memory to the model

Program: Applied AI — Yann Isola · Intermediate level 11 questions · one correct answer per question · explained answer key at the end

Reminder: RAG = Retrieval-Augmented Generation: retrieve relevant evidence before generating an answer.


Question 1 — Which of the following statements about knowledge of an LLM (Large Language Model) used without RAG is FALSE?

Question 2 — The central analogy of the RAG seen in class is:

Question 3 — What is the correct sequence of the ingest pipeline (offline)?

Question 4 — In the query pipeline (online), why do we vectorize the question with the same embedding model as that used for the chunks?

Question 5 — A chunk that is much too large (for example 5,000 tokens) mainly poses what problem?

Question 6 — Why do we add an overlap between consecutive chunks?

Question 7 — When cutting, the rule regarding tables is:

Question 8 — A user searches for “error REF-2024-8812” and the purely vector RAG finds nothing relevant. What is the most likely explanation and solution?

Question 9 — Your RAG answers next to the question. You inspect and see that the retrieved chunks are off-topic. The correct diagnosis is:

Question 10 — What is the role of the instruction “Answer only from the context provided; if the answer is not there, say so”?

Question 11 — A self-correction step asks the same model whether its answer is grounded. Why is that insufficient to open the evidence gate?