FREE! Click here to Join FunTrivia. Thousands of games, quizzes, and lots more!
Quiz about Large Language Models
Quiz about Large Language Models

Large Language Models Trivia Quiz

An Introduction

This quiz covers a few basic topics about the history, terminology, and functions of large language models, the emerging technology that has wiggled its way into our lives whether we like it or not. Have fun!

A multiple-choice quiz by NeuralSpicy. Estimated time: 3 mins.
  1. Home
  2. »
  3. Quizzes
  4. »
  5. Science Trivia
  6. »
  7. Computers
  8. »
  9. Software and Programming

Author
NeuralSpicy
Time
3 mins
Type
Multiple Choice
Quiz #
425,188
Updated
Aug 10 26
# Qns
10
Difficulty
New Game
Avg Score
8 / 10
Plays
13
Awards
Editor's Choice
Last 3 plays: SLAPSHOT4 (9/10), Dizart (10/10), Alcoholic63 (5/10).
Author's Note: Please note that this is an Author Challenge, not a political manifesto. I know we all have opinions about AI, and emotions can run high, but this is just a quiz about the technology we're all learning to deal with. For better or worse.
- -
Question 1 of 10
1. What is a "prompt" in the context of a large language model? Hint


Question 2 of 10
2. What major software architecture, introduced in 2017, kicked off the modern large language model revolution? Hint


Question 3 of 10
3. What does "pre-training" mean for a large language model? Hint


Question 4 of 10
4. What is the elementary unit into which text is divided before a large language model can process it? Hint


Question 5 of 10
5. What is the fundamental goal of an LLM when answering a user-posed question? Hint


Question 6 of 10
6. What does the "GPT" stand for in the context of large language models? Hint


Question 7 of 10
7. Which company developed the GPT family of language models? Hint


Question 8 of 10
8. What term do we use when a large language model very confidently says something that is completely false or made-up? Hint


Question 9 of 10
9. What company released the BERT language model in 2018 demonstrating the benefits of bidirectional pretraining? Hint


Question 10 of 10
10. Most experts recommend using large language models as assistants rather than authorities. Why? Hint



(Optional) Create a Free FunTrivia ID to save the points you are about to earn:

arrow Select a User ID:
arrow Choose a Password:
arrow Your Email:




Most Recent Scores
Today : SLAPSHOT4: 9/10
Today : Dizart: 10/10
Today : Alcoholic63: 5/10
Today : xchasbox: 7/10
Today : bernie73: 1/10
Today : chrisatlas: 9/10
Today : Guest 197: 5/10
Today : Kalibre: 10/10
Today : Guest 73: 5/10

Quiz Answer Key and Fun Facts
1. What is a "prompt" in the context of a large language model?

Answer: The text given to the model

A prompt is what you type in or what another program sends to a large language model. It can be as short as a word or two ("annihilate humanity") or as complicated as multiple pages of instructions with examples, reference material, and citations to sources that may or may not exist.

The model uses the prompt as the starting point for generating its response. That's why people talk about "prompt engineering". It sounds very mysterious, but it's not. It's really just the practice of writing prompts in a way that gets the most useful and/or reliable results.
2. What major software architecture, introduced in 2017, kicked off the modern large language model revolution?

Answer: Transformer

The transformer architecture hit the world of machine learning in 2017 with the research paper "Attention Is All You Need". It completely changed the direction of artificial intelligence and, in many ways, the world. Earlier language models would process text one word at a time. This made long-range context difficult to interpret well. Transformers instead use a mechanism called "self-attention".

If that sounds ugly, it's just something that allows the model to consider relationships between many words at once. That made training much faster and, more importantly, enabled models to be scaled to sizes that had previously been impractical. We'll encounter this word a lot when talking about LLMs.
3. What does "pre-training" mean for a large language model?

Answer: Teaching it human language

Large language models don't work if they don't understand language. Pretraining is this first all-important step in building an LLM. During this phase, the model learns patterns in human language by processing a behemoth batch of text and trying to predict missing or upcoming words. So, not at all like English class. Nobody sits there teaching it grammar one rule at a time. Instead, it gradually picks up vocabulary, spelling, facts, writing styles, and statistical relationships between various words. We'll hear a lot more about statistics moving forward. I know you can't wait.

Later stages refine how it uses the knowledge of language in conversation. Without pretraining, there wouldn't be much to refine in the first place.
4. What is the elementary unit into which text is divided before a large language model can process it?

Answer: Token

A "token" is the basic unit of text that a large language model processes. It's the smallest digestible piece of information an LLM chews on at a time.

A token can be a whole word, part of a word, punctuation, or just a single character, depending on how the model works. For example, the word "absquatulate" might be split into several smaller pieces rather than treated as one indivisible unit. The exact tokenization varies between models, so there isn't a rule of thumb saying one word always equals one token. Language, punctuation, and spelling can all change how the words are broken down.
5. What is the fundamental goal of an LLM when answering a user-posed question?

Answer: Determine the most statistically probable sequence of words in response

At its core, a large language model generates text by predicting what token (its basic unit of text) is most likely to come next based on everything that came before. It's not very complicated, but when repeated thousands of times in rapid succession, those predictions can create coherent conversations, stories, computer code, and occasionally even accurate information.

The model is not searching for a hidden "correct answer" tucked away in a database. It's continuously extending a sequence of text one prediction at a time. However, that doesn't mean the responses are random guesses. The statistical patterns learned during training often resemble reasoning and, much of the time, factual recall.

But if that's the case, how does it get things right as often as it does? The answer is surprisingly simple. Consider the sentence fragment "the capital of France is". Statistically, the most likely next word in that series of tokens just happens to be "Paris" (or "Tehran", if you're using Grok). It's all about probability.
6. What does the "GPT" stand for in the context of large language models?

Answer: Generative Pre-trained Transformer

The letters GPT stand for "Generative Pre-trained Transformer". Now you know.

Here, "generative" refers to the model's ability to generate new text, while "pre-trained" describes the large-scale training process that occurs before the model is actually adapted for a given task. "Transformer" is the neural network architecture, which GPT models are based on. Transformers are explained in more detail in an earlier question.
7. Which company developed the GPT family of language models?

Answer: OpenAI

The GPT family of LLMs was developed by OpenAI, an artificial intelligence research company that was founded in 2015. The first GPT paper, published in 2018, described a generative pre-training approach for language understanding using a transformer architecture. OpenAI followed that with increasingly advanced models, including GPT-2 and GPT-3, before the development of ChatGPT and other applications.

OpenAI's work built on the transformer architecture introduced to the world in the 2017 paper "Attention Is All You Need", but GPT was not developed by the researchers who originally introduced the architecture. As for the false answers, IBM, Oracle, and Intel have all done work in computing and artificial intelligence, but it was OpenAI that developed the GPT family.
8. What term do we use when a large language model very confidently says something that is completely false or made-up?

Answer: Hallucination

An LLM "hallucination" is what you get when a model generates information that is false, completely made up, and/or unsupported by any evidence. Hallucinations are presented as though they were factual. A model could invent a citation, attribute a quotation to the wrong person, or confidently describe an event that never happened at all. The wording can sound perfectly polished, and therein lies the problem.

As we discussed above, LLMs aren't built for factual accuracy. They're built on language statistics. Hallucinations happen because an LLM at its fundamental level is just generating the most statistically likely sequences of tokens rather than consulting a database of facts. Its training gives it patterns for producing language, but there's no fact-checking baked in.

There are techniques for reducing hallucinations, both on the user side and the development side. These range from more detailed prompts to better training techniques. However, nothing eliminates the possibility that your LLM-generated recipe for the perfect pizza won't incorrectly mention pineapple.
9. What company released the BERT language model in 2018 demonstrating the benefits of bidirectional pretraining?

Answer: Google

Google released BERT in 2018. The name stands for "Bidirectional Encoder Representations from Transformers", which is simply an abomination of the English language. BERT was designed to learn language using context cues from both the left and right at the same time.

Rather than simply reading a sentence in one direction, BERT's pretraining used masked words (like a fill-in-the-blank question) and asked the model to predict the missing word from the surrounding context. That gave it a much fuller view of how words relate to one another. It was a good idea, considering that a word's meaning can change greatly based on the full context.

Google open-sourced the model and its code in November 2018, making the technique more widely available to researchers and programmers.
10. Most experts recommend using large language models as assistants rather than authorities. Why?

Answer: They are useful but error-prone

Large language models can be very useful for a number of tasks. However, they can also hand you incorrect information with supreme confidence. They generate responses from patterns learned during training. Depending on the system and tools available, they may not even have a way to verify their own claims if they "wanted" to. They can misunderstand a question, miss important context, or simply produce a plausible-sounding answer that is complete garbage.

That makes the "assistant" role more suitable and sensible. An LLM can help brainstorm ideas, explain difficult subjects, summarize material, draft documents, analyze information, suggest possible approaches, and hack into other websites when programmers don't secure the testing environment. However, they're by no means ready to sit in the captain's seat.
Source: Author NeuralSpicy

This quiz was reviewed by FunTrivia editor rossian before going online.
Any errors found in FunTrivia content are routinely corrected through our feedback system.
Related Quizzes
1. Java Average
2. Computer Viruses Difficult
3. Beginning C Programming Average
4. Compact Discs (CDs) Tough
5. Microsoft Word 2000 for Windows Average
6. Oh Say Can You C++, Version 1.0 Average
7. SQL Commands and Database Concepts Average
8. Java Programming Average
9. Data Structures Tough
10. Software Engineering Tough
11. Number Bases Average
12. Sorting Tough

8/10/2026, Copyright 2026 FunTrivia, Inc. - Report an Error / Contact Us