Course Content
Part 2: Talking Without Words
How people used to send messages across long distances The story of light flashes, drum beats, smoke signals, and Morse code Why using dots and dashes (or 0s and 1s) is so powerful. Let’s Talk in Just Two Choices: On or Off - What is binary, and why do computers love it? How “on” and “off” can mean anything—yes/no, true/false, A/B Why 2 choices are enough to build everything
0/3
Part 3: How Electricity Can Carry a Message
What is a circuit? How flipping a switch sends a message Why computers are made of millions of tiny switches.
0/5
Part 4: Building Ideas Using Only Switches
What is a logic gate? (Explained without saying “logic gate”) How switches can help us decide things How “AND,” “OR,” and “NOT” control what a computer does.
0/5
Part 5: How to Count, Add, and Remember With Just Wires
How computers add numbers using only switches What memory really is: remembering a single bit, then a byte How your computer stores your name, photos, and passwords. How switches can do math with just yes/no What memory means for a machine What bits and bytes really are (without the jargon). What are AND, OR, NOT, and more. How pictures, words, and videos are stored as 0s and 1s.
0/5
Part 6: Making Bigger Ideas with Tiny Ones
What is a byte? What is a file? How letters, music, pictures, and videos become 0s and 1s What happens when you type on a keyboard
0/5
Part 7: Meet the Heart of the Computer — the CPU
What the CPU really does (without calling it “central processing unit”) How it reads instructions, decides things, and tells others what to do How fast is it, really?
0/5
Part 8: Let’s Look Inside a Real Computer
What is a motherboard? How all the parts connect: CPU, memory, storage, input/output What happens when you turn a computer on.
0/5
Part 9: What Is Software and Who Tells It What to Do?
What is an operating system? How computers follow code like a recipe What happens when you open an app
0/5
Part 10: How Is a Phone Like a Computer?
What’s different inside a phone or tablet? How mobile computers are smaller—but just as powerful Why phones still need the same ideas: binary, circuits, memory.
0/2
Let’s Find Out How Computers Work

🧠 Let’s Start with a Big Question

How can a computer count all the way up to a million…
…if it only knows two things: YES and NO?

That sounds kind of crazy, right?

But it’s not crazy at all. It’s smart. Very smart.

Computers don’t see numbers like you and I do.
They don’t have eyes.
They don’t think.
They just follow rules.

And their most important rule is this:

“I can only understand ON or OFF. Yes or No. 1 or 0.”

So how can you count using just that?

Let me show you. It’s actually really fun.

 

✋ Let’s Count Using Fingers (But Differently)

Hold out one hand. Wiggle your fingers.

You have 5 switches right there.

Now imagine this:

  • Finger down = OFF

  • Finger up = ON

That’s it. That’s how a computer sees the world.

Every finger is like a switch — like a light switch.
You can flip it ON or OFF.

Now let’s try something cool.

 

🔢 Let’s Pretend Each Finger Means Something

Let’s name your fingers:

  • Pinky = 1

  • Ring = 2

  • Middle = 4

  • Index = 8

  • Thumb = 16

Strange numbers, huh?

But it’s a pattern. Each one is double the one before it.

Now let’s say:

  • You lift your pinky: That’s 1

  • You lift your ring: That’s 2

  • Both pinky and ring = 3 (1 + 2)

  • Middle only = 4

  • Ring + index = 2 + 8 = 10

  • Thumb + index + ring = 16 + 8 + 2 = 26

See? You can now count using just ON/OFF fingers.

That’s what a computer does.
Instead of fingers, it uses electric switches.

 

🧠 What You Just Learned (Without Realizing It)

You just learned how binary counting works.
But we never said “binary,” and that’s the fun part.

In computer land:

  • Finger DOWN = 0

  • Finger UP = 1

Each switch (or finger) counts for a bigger number.
So when a computer has 8 switches, it can count up to 255.

With just 8 ON/OFF bits, it can make 256 combinations!

 

🧩 Try This Little Game

Let’s try counting with 3 fingers.

Call them:

  • Right = 1

  • Middle = 2

  • Left = 4

Now make these combos:

Fingers 0/1 Value
All down 000 0
Right up 001 1
Middle up 010 2
Middle + Right 011 3
Left only 100 4
Left + Right 101 5
Left + Middle 110 6
All up 111

7

Just 3 switches = 8 possibilities.

That’s how computers count.

 

🧪 Why This Works So Well

Computers use electricity, and electricity loves simplicity.
A switch is either:

  • Getting power = ON = 1

  • No power = OFF = 0

It’s super fast. Super clean. And works like magic — but it’s just yes/no rules.

The magic comes from combining lots of switches together.

Would you like to try adding numbers next? Computers can do that too — and again, it’s all with switches! Let’s go.

💡 Okay… But How Do We Turn 1s and 0s into Normal Numbers?

You’ve already seen the trick:
Each switch (or “bit”) has a value, and each value is double the one before it.

Let’s take 4 switches (bits) to make it simple:

Switch # Value
1st (rightmost) 1
2nd 2
3rd 4
4th (leftmost) 8

If the switch is ON (1), you add its value.
If the switch is OFF (0), you ignore it.

 

🎯 Example 1:

Binary: 0101

  • Leftmost bit: 0 → ignore (8)

  • Next bit: 1 → add 4

  • Next bit: 0 → ignore (2)

  • Rightmost bit: 1 → add 1

Total = 4 + 1 = 5

 

🎯 Example 2:

Binary: 1110

  • Leftmost: 1 → add 8

  • Next: 1 → add 4

  • Next: 1 → add 2

  • Rightmost: 0 → ignore (1)

Total = 8 + 4 + 2 = 14

 

📝 Rule of Thumb

  • Always start from the rightmost bit, which is worth 1.

  • Move left, doubling the value each time (1 → 2 → 4 → 8 → 16 → 32 → and so on).

  • Add up the values of the bits that are ON (1).

 

Why Computers Love This

Because with just a few bits, you can represent huge numbers:

  • 3 bits → up to 7

  • 4 bits → up to 15

  • 8 bits → up to 255

  • 16 bits → up to 65,535

  • 32 bits → over 4 billion

  • 64 bits → numbers so big you’ll never need to count that high in your life (but computers do!)

 

🧠 Secret Superpower
Binary isn’t just for numbers.
Those 1s and 0s can also mean:

  • Letters (A, B, C…)

  • Colors (red, green, blue values)

  • Sounds (wave patterns)

  • Pictures (pixel grids)

It’s all the same to a computer — just ON and OFF switches combined in clever ways.