Parent Guide -- What to Say, How to Help, What to Watch For
"Every day, you make decisions without even thinking about it. Today we are going to notice those decisions and turn them into rules. The rules follow a pattern: IF something is true, THEN do something."
Start with a familiar example: "IF it is raining, THEN you take an umbrella. See the pattern?"
The "What Would You Do?" game is the star activity. Make the situations silly sometimes: "IF a dinosaur showed up at breakfast, THEN..." Kids love making ridiculous rules, and silly or serious, the logical pattern is the same.
"Did you know that with just yes and no, you can figure out almost anything? Let us play a game to prove it!"
After 20 Questions: "Which questions helped you the most? The ones that split everything in half are the most powerful."
If using real objects, start with 8-10 items. Kitchen items work great (spoon, cup, plate, sponge, apple, napkin). If the child struggles, help them think of a question: "What is something that divides these into two roughly equal groups?"
"Remember how we sorted things with yes/no questions? A decision tree is a picture of that. Each question is like a fork in the road. Let us draw one together!"
If your child loves stories, the adventure activity will be a highlight. Help them plan 2 choices, each leading to 2 more choices, for 4 endings total. They do not need to write long paragraphs -- a sentence per node is fine. The structure matters more than the writing quality.
"Now you get to teach the computer to make decisions! We are going to use if/then blocks, which are just like the rules we have been making, but in code."
"The computer checks: is this key pressed? Is the sprite touching this color? And then it decides what to do."
The interactive story project (Project 3) is the most complex thing in this module. It is fine to build it together, with you handling the trickier operator blocks while your child picks the story content. If it feels like too much, just do Projects 1 and 2 (arrow keys and color detection) and save the story for another day.
| Word | Kid-Friendly Definition |
|---|---|
| If/Then Rule | IF something is true, THEN do something |
| Else | Otherwise -- what to do when the IF part is not true |
| Condition | The thing you check (the IF part) |
| Binary | Two choices only: yes/no, true/false |
| Decision Tree | A picture with branching paths based on yes/no questions |
| Conditional | Code that checks a condition and decides what to do |
That is okay! Play more 20 Questions. Draw more decision trees. Practice makes the pattern feel natural.
Module 5 covers Loops and Repetition. Your child will learn how to make things happen over and over without copying blocks. This connects directly to this module: in the arrow key project, we used a "forever" loop -- that is a preview of what Module 5 explores in depth. If your child noticed the repeating pattern in Module 3's animation (switch costume, move, wait, repeat), they are already thinking about loops!