Skip to main content

AI FAQ & Glossary

Frequently Asked Questions and a Plain-English Glossary of AI Terms for New Learners

Frequently Asked Questions

New to artificial intelligence? You're in good company. These are the questions we hear most often from people just starting out. Click any question to reveal a plain-English answer — no jargon, no prior experience required.

How to use this page

Start with the FAQ below to clear up common confusions, then browse the Glossary whenever you hit a term you don't recognize. New to everything? Begin with the AI Fundamentals tutorial and keep this page open in another tab as your quick reference.

What is Artificial Intelligence, really?

Artificial Intelligence is software that performs tasks we usually associate with human thinking — recognizing faces, understanding language, making recommendations, or spotting patterns. Instead of following one fixed set of instructions, most modern AI learns from examples. Think of it as a very fast, very patient pattern-spotter rather than a conscious mind.

Is AI the same thing as machine learning?

Not quite — they're nested. Artificial Intelligence is the broad goal (machines doing smart things). Machine Learning is the most common way we get there today (learning patterns from data). Deep Learning is a powerful sub-type of machine learning that uses neural networks. The diagram below shows how they fit inside one another.

flowchart TD A[Artificial Intelligence
machines doing smart things] --> B[Machine Learning
learning patterns from data] B --> C[Deep Learning
many-layered neural networks] C --> D[Large Language Models
e.g. ChatGPT, Claude] style A fill:#4caf50 style B fill:#2196f3 style C fill:#e1bee7 style D fill:#ff9800
Do I need to know how to code to learn AI?

No. You can understand how AI works, use everyday AI tools, and even build simple projects with no-code platforms — all without writing a line of code. Coding (usually Python) becomes useful later if you want to build or customize models yourself. This tutorial series assumes no programming background.

What math do I need?

To use AI: basically none. To understand the concepts: comfort with percentages and simple graphs is plenty. To build advanced models professionally: statistics, linear algebra, and calculus help — but that's a much later step, and you can learn it as you go.

What is a "model" in AI?

A model is the trained result of a machine-learning process — the "expert" you get after showing an algorithm lots of examples. If training is the studying, the model is the graduate who can now answer new questions. When people say "ChatGPT" or "an image generator," they're referring to a model.

What are ChatGPT, Claude, and "large language models"?

They're large language models (LLMs) — AI systems trained on enormous amounts of text to predict the most likely next words. That simple idea, done at massive scale, lets them answer questions, write, summarize, and translate. They're remarkably capable but don't "know" facts the way a database does — which is why they can occasionally be confidently wrong (see hallucination).

Does AI actually "think" or understand?

Not in the human sense. Today's AI recognizes and reproduces patterns extremely well, but it has no beliefs, feelings, or genuine understanding. It's easy to feel like it understands because the output is so fluent — a bit like how a parrot can sound conversational without grasping meaning.

Why does AI sometimes give wrong or made-up answers?

Because it predicts likely-sounding responses rather than looking up verified facts. When it fills a gap with something plausible but false, that's called a hallucination. Always double-check anything important — treat AI as a fast, fallible assistant, not an authority.

Is AI going to take my job?

AI is more likely to change jobs than erase them wholesale. It automates specific tasks (drafting, summarizing, sorting) rather than entire roles, and it creates new kinds of work too. The most durable skill is learning to work alongside AI — which is exactly what these tutorials help you do.

Is AI safe? What are the real risks?

AI is a tool, and like any powerful tool it carries real risks: biased decisions, privacy concerns, misinformation, and over-reliance. These are serious but manageable with responsible design and human oversight. Our AI Ethics & Safety tutorial covers this in depth.

Why does "data quality" matter so much?

Because a model can only learn from what it's shown. Messy, biased, or incomplete data produces a messy, biased model — "garbage in, garbage out." Good, representative data usually matters more than which fancy algorithm you pick.

Free vs. paid AI tools — which should I use?

Start free. Free tiers of tools like ChatGPT, Claude, and many image generators are more than enough to learn the ropes. Upgrade only when you hit a specific limit you actually care about (speed, quality, usage caps, or privacy features).

How do I get started, step by step?

1) Read AI Fundamentals. 2) Play with a free tool and notice what it does well and badly. 3) Work through Machine Learning in Practice. 4) Keep this glossary handy. Curiosity and hands-on tinkering beat memorization every time.

Glossary of AI Terms

Plain-English definitions of the terms you'll meet most often. Jump to a letter, or skim the whole list — each entry is short on purpose.

A B C D E F G H I L M N O P R S T U W

A

Algorithm
A step-by-step set of instructions for solving a problem. In AI, algorithms are the "recipes" that learn patterns from data.
Artificial Intelligence (AI)
The broad field of building machines that perform tasks we associate with human intelligence, such as understanding language or recognizing images.
Artificial General Intelligence (AGI)
A hypothetical future AI that could match human ability across virtually any task. Today's AI is "narrow" — good at specific things, not everything.
API
Application Programming Interface — a doorway that lets one program talk to another. Developers use AI companies' APIs to add AI features to their own apps.

B

Bias
Unfair or skewed behavior that a model learns from imbalanced or prejudiced training data. Reducing bias is a core part of responsible AI.
Big Data
Datasets so large or complex that ordinary tools struggle to handle them. Big data is much of the fuel behind modern AI.

C

Chatbot
A program you interact with through conversation. Modern chatbots are powered by large language models.
Classification
A task where a model sorts inputs into categories — e.g. "spam" vs. "not spam," or which animal is in a photo.
Clustering
Grouping similar items together without being told the categories in advance. A common form of unsupervised learning.
Computer Vision
The field of teaching computers to interpret images and video — recognizing faces, reading handwriting, spotting tumors in scans.

D

Data
The examples an AI learns from — text, images, numbers, sounds. Quality and variety of data strongly shape how well a model performs.
Dataset
An organized collection of data used to train or test a model.
Deep Learning
A powerful branch of machine learning that uses neural networks with many layers, enabling breakthroughs in vision and language.
Diffusion Model
A type of model behind many image generators. It learns to turn random noise into a coherent picture, step by step.

E

Embedding
A way of turning words, images, or other items into lists of numbers so a computer can measure how similar they are. Similar things end up "close together."
Epoch
One full pass through the entire training dataset during learning. Models usually train for many epochs.

F

Feature
An individual measurable property the model pays attention to — e.g. the price, size, or color of something.
Fine-tuning
Taking an already-trained model and giving it extra training on a narrower topic so it specializes for a specific job.

G

Generative AI
AI that creates new content — text, images, audio, code — rather than just classifying or predicting existing things.
GPT
Generative Pre-trained Transformer — a family of large language models. The technology behind tools like ChatGPT.
GPU
Graphics Processing Unit — a chip originally built for video games, now essential for training AI because it handles huge numbers of calculations in parallel.

H

Hallucination
When an AI states something false but plausible-sounding as if it were fact. Always verify important AI answers.
Hyperparameter
A setting chosen before training that shapes how a model learns (like an oven's temperature dial before you bake).

I

Inference
Using a trained model to make a prediction or generate an answer. Training is the studying; inference is answering the question.
Image Recognition
The ability of a model to identify what's in a picture — a subtask of computer vision.

L

Label
The "correct answer" attached to a training example — e.g. tagging a photo as "cat." Labeled data powers supervised learning.
Large Language Model (LLM)
A model trained on vast amounts of text to understand and generate human-like language by predicting likely next words.

M

Machine Learning (ML)
The approach of getting computers to learn patterns from data instead of being explicitly programmed with rules.
Model
The trained system that results from machine learning — the "expert" that makes predictions or generates content.
Multimodal
An AI that works across more than one kind of input or output at once — for example, understanding both text and images.

N

Natural Language Processing (NLP)
The field of helping computers understand and produce human language — behind translation, chatbots, and voice assistants.
Neural Network
A model loosely inspired by the brain, built from layers of connected "neurons" that pass signals along to detect patterns.
Neuron (Node)
A single tiny unit in a neural network that receives inputs, does a small calculation, and passes the result on.

O

Overfitting
When a model memorizes its training data too closely and then performs poorly on new data — like a student who memorized answers instead of learning the subject.
Open Source
Software (or a model) whose code or weights are publicly available for anyone to inspect, use, and build on.

P

Parameter
An internal value a model adjusts during training. Large models have billions of them — together they store what the model has "learned."
Pattern Recognition
Spotting regularities in data — the core thing most AI actually does.
Prompt
The instruction or question you give an AI. Clear, specific prompts usually get better results.
Prompt Engineering
The skill of wording prompts well to get the output you want from an AI tool.

R

Reinforcement Learning
Training by trial and error, where a model earns rewards for good actions — how AI learns to play games or steer robots.

S

Supervised Learning
Learning from labeled examples where the correct answers are provided — the most common form of machine learning.

T

Token
A small chunk of text (a word or piece of a word) that language models read and generate. AI usage is often measured in tokens.
Training
The process of showing a model many examples so it can adjust its parameters and learn patterns.
Transformer
The neural-network design that powers most modern language models. Its "attention" mechanism lets it weigh which words matter most.
Turing Test
A classic thought experiment: can a machine hold a conversation well enough that you can't tell it apart from a human?

U

Unsupervised Learning
Finding structure in data without labeled answers — e.g. grouping customers by behavior. Clustering is a common example.
Underfitting
When a model is too simple to capture the real pattern, so it performs poorly even on its training data.

W

Weights
The adjustable strengths of the connections in a neural network. Training is essentially the process of tuning the weights.

Still stuck on a term? Every tutorial in this series introduces terms in context — the Fundamentals page is the gentlest place to see them in action.

Keep this page bookmarked — it's meant to be your quick reference as you work through the series.