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 a Large Language Model during text generation?
- Predicting the next token
- Translating human speech
- Executing software code
- Searching live databases
Answer: A. Predicting the next token
Explanation: LLMs are designed to predict the next token in a sequence based on the patterns they learned during their training phase.
Question 2: Which architecture serves as the foundation for modern Large Language Models?
- Convolutional Neural Network
- Transformer
- Decision Tree
- Recurrent Neural Network
Answer: B. Transformer
Explanation: The Transformer architecture, introduced in 2017, utilizes a self-attention mechanism to process input data in parallel, allowing models to understand complex contextual relationships between words.
Question 3: What is a 'token' in the context of LLM processing?
- A security key for API access
- A hardware component
- A unit of text like a word or subword
- A specific database entry
Answer: C. A unit of text like a word or subword
Explanation: Tokenization is the essential process of breaking down raw text into smaller units called tokens, which can be characters, subwords, or words, for numerical processing.
Question 4: What is the process of training a base model with specific data for a particular task called?
- Zero-shot learning
- Pretraining
- Embedding
- Fine-tuning
Answer: D. Fine-tuning
Explanation: Prompt engineering refers to the systematic practice of crafting and refining input text to guide a language model toward producing more accurate or relevant outputs.
Question 5: What mechanism allows LLMs to understand context and relationships between similar terms?
- Manual tagging
- Prompt engineering
- Word embeddings
- Hardware acceleration
Answer: C. Word embeddings
Explanation: Hallucination occurs when a language model generates information that is factually incorrect or nonsensical while presenting it with a high degree of confidence and fluency.
Question 6: What is the term for an LLM responding to a request without explicit task-specific training?
- Supervised learning
- Data augmentation
- Zero-shot learning
- Model pruning
Answer: C. Zero-shot learning
Explanation: Temperature is a hyperparameter that controls the randomness of the model's output; lower values make responses more deterministic, while higher values increase creativity and diversity.
Question 7: What are the billions of numerical parameters learned during training that encode model knowledge?
- Model weights
- Input tokens
- Training epochs
- Output layers
Answer: A. Model weights
Explanation: Model weights are the internal numerical parameters learned during the training process that store the model's knowledge and determine how it processes and generates information.
Question 8: Which phase involves learning language structure from massive amounts of internet text?
- Prompting
- Deployment
- Debugging
- Pretraining
Answer: D. Pretraining
Explanation: Fine-tuning is the process of taking a pre-trained model and training it further on a smaller, specialized dataset to improve performance on specific tasks or domains.
Question 9: Which of these is a common practical application for an LLM?
- Directly controlling power grids
- Summarizing articles
- Manufacturing physical goods
- Physical hardware repair
Answer: B. Summarizing articles
Explanation: Summarizing articles is a primary practical application for LLMs, as they excel at condensing large volumes of text into concise, coherent, and accurate summaries for users.
Question 10: How does an LLM generate text during an autoregressive process?
- By retrieving full documents
- Entire paragraphs at once
- Randomly selecting words
- One token at a time
Answer: D. One token at a time
Explanation: Context window refers to the maximum amount of text, measured in tokens, that a model can consider at one time when processing an input or generating output.