What You Will Learn
- What the word data actually means
- Why data is not the same as information
- How data shows up in everyday life
- Why every modern job needs at least a basic understanding of data
Why This Topic Matters
Every spreadsheet you open, every app you use, every bill you pay, and every delivery you receive runs on data. If you cannot recognize data when you see it, every later topic in this course — analytics, SQL, Python, statistics — will feel like magic. It is not magic. It is just data, organized and used carefully. This first lesson gives you the foundation so the rest of the course makes sense.
A Simple Definition
Data is any recorded fact. That is the whole definition. If something can be written down, measured, photographed, or stored in a computer as a record, it is data.
That is intentionally broad. Data does not have to be a number. The name of your favorite restaurant is data. The time you woke up this morning is data. The color of your phone is data. A photograph is data. A voice recording is data.
Real-World Analogy
Imagine you keep a small notebook of every meal you eat. On Monday you write: "two eggs, one toast, black coffee." That sentence is data. It is a recorded fact about what you ate.
Now imagine you do this every day for a month. At the end of the month you read through the notebook and realize: "I eat eggs 22 out of 30 days, but I almost never eat fruit." That sentence is information. It is meaning you extracted from data.
This is the whole job of a data analyst: turn data into information that someone can act on.
Everyday Examples of Data
| Situation | What is being recorded (the data) |
|---|---|
| You buy a phone online | Product name, price, date, your address, payment method |
| You watch a YouTube video | Video ID, your user ID, watch time, timestamp |
| You order food on an app | Restaurant, dish, quantity, delivery address, order time |
| Your school records attendance | Student name, date, present/absent |
| A bank processes a transaction | Account number, amount, timestamp, merchant |
| A cricket match is scored | Bowler, batter, runs, ball number, over |
Notice the pattern: every example is a list of facts about something that happened. Some of those facts are numbers (price, runs, amount), and some are text (product name, address). Both are data.
Data vs Information vs Knowledge
These three words are often used loosely, but in analytics they mean different things:
| Term | Meaning | Example |
|---|---|---|
| Data | Recorded facts | "2026-08-23, Order #4521, ₹499, Delhi" |
| Information | Data organized to answer a question | "Orders from Delhi in August totaled ₹499." |
| Knowledge | Information combined with experience to make decisions | "Delhi orders drop on weekends — schedule fewer delivery riders on Saturdays." |
You do not need to memorize the table. You just need to notice that raw data by itself is rarely useful. It becomes useful when someone organizes it and interprets it.
Common Mistakes Beginners Make
- Thinking data must be numbers. Text, dates, images, and audio are all data.
- Confusing data with information. A spreadsheet with 10,000 rows is data. A one-line summary of what those rows mean is information.
- Assuming data is always correct. Data is recorded by people or sensors, both of which make mistakes. We will cover data quality in lesson 06 on data sources and lesson 03 on data types.
- Trying to learn tools before understanding data. SQL, Python, and Excel are just tools. If you do not understand what data is, the tools will not help.
Practical Exercise (5 minutes)
Look at your phone's call log. Pick any one call and write down five pieces of data about that call. For example:
- Caller name
- Phone number
- Call duration (in seconds)
- Date of call
- Whether you answered (yes/no)
That is your first dataset. You have just structured raw reality into recorded facts. You are already doing data work.
Mini Challenge
Open any receipt you have — a shop bill, a restaurant bill, an online order confirmation. Identify at least ten distinct pieces of data on it. Bonus: for each one, decide whether it is a number, a piece of text, or a date. (We will formalize these categories in lesson 05 — Data Types.)
Key Takeaways
- Data = any recorded fact.
- Data can be numbers, text, dates, images, audio, or video.
- Information is data organized to answer a question.
- An analyst's job is to convert data into information people can act on.
- Never trust data blindly — it is recorded by humans and sensors, both of which make errors.
Previously learned: Nothing — this is the first lesson.
Today: You learned what data is and how it differs from information.
Next: In lesson 02 — Structured vs Unstructured Data you will learn how data is organized, and why some data is easy to put in a spreadsheet while other data is not.
FAQ
Is "data" singular or plural?
Strictly, data is the plural of datum (a single fact). In modern usage, data is treated as both singular and plural. Both "the data is clear" and "the data are clear" are accepted. This course uses the singular form because it reads more naturally.
Is a photograph considered data?
Yes. A photograph is a grid of colored pixels, each recorded as numbers. A 12-megapixel photo is 12 million pieces of data. Image-recognition systems treat photos as data.
Comments
Comments
Post a Comment