Heads up: opening this section reveals every question, every option, and the correct answer for this round. If you came here to play, scroll up and hit Play first.
Question 1: What is the primary function of an LLM when processing input queries?
- Statistical pattern matching
- Conceptual reasoning
- Deterministic logic execution
- Database query retrieval
Answer: A. Statistical pattern matching
Explanation: LLMs operate as advanced statistical engines that match input queries to learned textual patterns rather than possessing conceptual understanding or performing logical reasoning like a human brain would.
Question 2: What term describes when an LLM generates false information that sounds highly convincing?
- Tokenization
- Underfitting
- Hallucination
- Overfitting
Answer: C. Hallucination
Explanation: A hallucination occurs when an LLM generates text that sounds accurate but is entirely false due to missing information or the model's probabilistic nature creating plausible-sounding but incorrect details.
Question 3: Which of these is a required component of a RAG workflow?
- Hard-coded logic
- Chunking
- Deterministic programming
- Manual data entry
Answer: B. Chunking
Explanation: Retrieval-Augmented Generation (RAG) requires specific technical steps including chunking, embeddings, recall, re-ranking, and guardrails to function effectively, rather than simply attaching a document to a prompt.
Question 4: What happens when an LLM fails to generalize or learn training data effectively?
- Overfitting or underfitting
- Improved token economics
- Increased context window
- Enhanced human oversight
Answer: A. Overfitting or underfitting
Explanation: Overfitting and underfitting are critical training errors that occur when models fail to generalize or learn training data effectively, leading to poor performance on new, unseen input data.
Question 5: What is a primary limitation of an LLM's context window?
- Infinite memory capacity
- Limited memory span
- Deterministic output speed
- Zero computational cost
Answer: B. Limited memory span
Explanation: Context windows represent a limited memory span for AI, creating computational costs and performance degradation when the input size becomes too large for the model to process effectively.
Question 6: Why are LLMs considered probabilistic rather than deterministic?
- They have infinite memory
- They use controlled randomness
- They require human oversight
- They follow rigid rules
Answer: B. They use controlled randomness
Explanation: LLMs are inherently probabilistic and introduce controlled randomness during generation rather than functioning as deterministic engines that provide the exact same output for every identical input query.
Question 7: What is essential to prevent reliance on inaccurate LLM outputs?
- Increasing model size
- Grounding in traceable data
- Removing all randomness
- Automating all decisions
Answer: B. Grounding in traceable data
Explanation: Grounding responses in traceable data and including human oversight are essential best practices to prevent reliance on inaccurate LLM outputs and ensure the information provided is verifiable.
Question 8: What is required to test accuracy, bias, and safety in LLM applications?
- Continuous evaluation systems
- Unlimited training data
- Deterministic logic gates
- Manual prompt rewriting
Answer: A. Continuous evaluation systems
Explanation: Successful LLM applications require continuous evaluation systems to test accuracy, bias, safety, and edge case handling across diverse scenarios to ensure the model behaves as expected in production.
Question 9: What is a common consequence of bias and hallucination in LLMs?
- Reflecting social biases
- Elimination of token costs
- Increased processing speed
- Perfect logical reasoning
Answer: A. Reflecting social biases
Explanation: Bias and hallucination issues cause models to reflect social biases or create confident but false details like made-up facts, which can undermine the reliability of the generated content.
Question 10: What is the primary purpose of a system prompt in an LLM interaction?
- To increase the model's total training parameters
- To store user data for future model fine-tuning
- To bypass the model's safety filtering protocols
- To define the model's persona and constraints
Answer: D. To define the model's persona and constraints
Explanation: A system prompt establishes the behavioral guidelines, tone, and operational boundaries for the model. It acts as the foundational instruction set that governs how the LLM should respond to user inputs.