Lesson 1 of 10

What Is Data? 📊

🎯 Grades 6–8 ⏱ ~25 minutes 💚 Intermediate

What You'll Learn

  • Understand quantitative vs categorical data
  • Know the data pipeline: Collect → Clean → Analyze → Visualize
  • Store data in Python lists and inspect it with len, min, max
Quick Check

1. Which type of data is "favorite color"?

AQuantitative
BCategorical
CNumerical

2. What does len([5, 10, 15, 20]) return?

A50
B5
C4

3. What is the correct order of the data pipeline?

AVisualize → Collect → Analyze
BCollect → Clean → Analyze → Visualize
CAnalyze → Collect → Clean

4. Which Python function finds the largest value in a list?

Alargest()
Bmax()
Ctop()