hallucination
AI, ML & GenAI interview questions tagged hallucination, across every topic.
12 questions · 2 unlocked for you
Concepts behind "hallucination"
The curriculum that explains the ideas these questions test.
Foundational
HallucinationA hallucination is fluent, confident output that is wrong or unsupported. It arises because a language model is trained to produce plausible continuations, not to know what it knows; it has no built-in truth check. You reduce it with grounding (RAG), letting the model abstain, low temperature on factual tasks, and verification, and you detect it with faithfulness checks against sources. AI, ML, and GenAI engineer interviews probe it because hallucination is the number-one reason LLM features fail in production, and because the fix is system design, not a magic prompt.🧠 Foundations of LLMs & GenAI
Foundational
Citations and GroundingGrounding means the model answers only from supplied sources; citations make each claim traceable to the exact passage backing it. Together they form RAG's trust mechanism: they let users verify, let you catch hallucination (an uncited or unsupported claim is a red flag), and are required in high-stakes domains. Applied-AI interviews cover it because 'it gave a great answer' means nothing if you cannot tell whether it is true, and citations are how production AI earns trust.🤖 Retrieval & Agents
