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 term for a small chunk of text processed by an LLM, which can be a word, part of a word, or punctuation?
- Embedding
- Parameter
- Inference
- Token
Answer: D. Token
Explanation: A token is the fundamental unit of text that an LLM processes. These chunks can represent whole words, parts of words, or even individual punctuation marks during the model's operation.
Question 2: Which term describes the internal settings or weights that LLMs adjust to generate responses?
- Parameters
- Embeddings
- Context windows
- Tokens
Answer: A. Parameters
Explanation: Parameters are the internal weights or settings within a model. Generally, a higher number of parameters allows the model to capture more complex patterns and improve its overall performance.
Question 3: What is the process called when an LLM produces text by predicting the next token in a sequence?
- Fine-tuning
- Inference
- Embedding
- Pre-training
Answer: B. Inference
Explanation: Inference is the operational phase where a generative model takes an input sequence of tokens and predicts the subsequent token to generate coherent text based on its learned patterns.
Question 4: What is the name for the first stage of training where a model learns general knowledge from a massive dataset?
- Pre-training
- Few-shot learning
- Retrieval-Augmented Generation
- Inference
Answer: A. Pre-training
Explanation: Pre-training is the initial phase of development. During this stage, the model processes vast amounts of data to learn grammar, general knowledge, and the underlying patterns of human language.
Question 5: What is the term for when an LLM generates factually incorrect but plausible-sounding information?
- Few-shot learning
- Inference
- Hallucination
- Parameter adjustment
Answer: C. Hallucination
Explanation: Hallucination occurs when a model generates information that sounds confident and plausible but is factually incorrect, often happening when the model fills in gaps without proper grounding in data.
Question 6: Which term describes the number of tokens an LLM can process at one time?
- Embedding size
- Knowledge cutoff
- Context window
- Parameter count
Answer: C. Context window
Explanation: The context window defines the maximum number of tokens a model can handle in a single interaction. For example, 4,096 tokens typically correspond to approximately 3,000 words of text.
Question 7: What is the technique of providing an LLM with examples of a task to improve its performance?
- RLHF
- Pre-training
- Few-shot learning
- Chain-of-Thought
Answer: C. Few-shot learning
Explanation: Few-shot learning involves giving the model a small number of examples within the prompt. This helps the model understand the desired format or task before it generates the final output.
Question 8: What method combines AI with external data sources to pull in relevant information?
- Pre-training
- Retrieval-Augmented Generation
- Chain-of-Thought
- Few-shot learning
Answer: B. Retrieval-Augmented Generation
Explanation: Retrieval-Augmented Generation, or RAG, allows a model to access external data sources. This enables the model to provide more accurate information by grounding its responses in specific, retrieved documents.
Question 9: What prompting technique guides an LLM to reason step-by-step through a problem?
- Chain-of-Thought
- Few-shot learning
- Embedding
- Reinforcement learning
Answer: A. Chain-of-Thought
Explanation: Chain-of-Thought prompting encourages the model to break down complex problems into logical, sequential steps. This often leads to more accurate reasoning and better final answers for difficult tasks.
Question 10: What process aligns model behavior with human preferences by having humans rank responses?
- Reinforcement Learning from Human Feedback
- Pre-training
- Few-shot learning
- Retrieval-Augmented Generation
Answer: A. Reinforcement Learning from Human Feedback
Explanation: Reinforcement Learning from Human Feedback (RLHF) is a training method where human evaluators rank model outputs. This feedback helps align the model's behavior with human preferences and safety standards.