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

🧠 Wait… Can a Switch Add 2 + 2?

A switch can turn something ON.
Another switch can turn it OFF.

But can a switch add?

Surprisingly… YES!

And here’s the secret:
A computer doesn’t “know” what 2 + 2 is.
It just follows a pattern of rules.

It uses switches to make decisions.

Let’s see how.


🧩 First: Let’s Start with 1 + 1

In your world:
1 + 1 = 2

In computer world:
1 = ON
1 = ON

Now here’s the surprise…

In binary, 1 + 1 = 10

That doesn’t mean ten.

It means:

  • First switch = OFF (0)

  • Next switch = ON (1)

It’s like saying, “Oops, too big! Let’s turn this one OFF and move to the next one.”

That’s called a carry — and it’s super important.


⚙️ The Machine That Adds: A Tiny Logic Trick

Imagine you build a tiny machine with two switches:

  • A

  • B

Now you connect them to a lightbulb.

You make the bulb light up only if one of the switches is ON.

  • A is ON, B is OFF → light ON

  • A is OFF, B is ON → light ON

  • Both OFF → light OFF

  • Both ON → light OFF (weird, right?)

That’s called an XOR rule. It’s a switch rule that means:

“Only light up if exactly ONE is ON.”

Now add another switch called the carry.

That’s just a rule that says:

“If BOTH are ON, turn ON the carry light.”

So now you have:

  • Sum light = XOR

  • Carry light = AND

Boom! That’s called a half-adder.

It’s how a computer adds.


🧠 Add Big Numbers? Just Stack Them!

If one tiny adder can add 1 + 1…

You can connect them to add big numbers:

  • 1 + 2 = 3

  • 3 + 4 = 7

  • 15 + 15 = 30

You do that by chaining adders and passing the carry forward.

Each “column” of switches adds two numbers and passes on the carry if needed.

This is what happens inside your calculator or phone — millions of times per second.


📊 Let’s Add 2 + 3

2 = 010
3 = 011
Add:

    010
+  011
 ——-
    101

 

What’s 101?

Let’s decode:

  • Right = 1

  • Middle = 0

  • Left = 4

4 + 0 + 1 = 5

So 2 + 3 = 5. Even in computer world.