Module 2: Practice Activities
Time to Practice!
Here are 6 activities to help you practice patterns, loops, and Scratch skills from Module 2. Some are on paper, some use Scratch. Try them all!
Difficulty levels: Easy Medium Challenge
1 Pattern Detective Easy Screen-Free
Find the rule and fill in the blanks for each pattern:
A:
B:
C:
A: 12, 18. Rule: add 3 each time. (3, 6, 9, 12, 15, 18, 21)
B: I, K. Rule: skip one letter each time. A, (B), C, (D), E, (F), G, (H), I, (J), K, (L), M
C: 85, 75. Rule: subtract 5 each time. (100, 95, 90, 85, 80, 75, 70)
2 Sort It Out Easy Screen-Free
Sort these 12 items into groups. You decide the groups! There is no single right answer.
Items: dog, rose, goldfish, daisy, cat, tulip, parrot, sunflower, hamster, lily, turtle, orchid
Try sorting them two different ways. For each way, name the groups you made and list which items go in each group.
Animals: dog, goldfish, cat, parrot, hamster, turtle
Flowers: rose, daisy, tulip, sunflower, lily, orchid
Example sorting 2 -- By where they live:Indoor pets: dog, goldfish, cat, hamster
Can be outdoor: parrot, turtle
Garden: rose, daisy, tulip, sunflower, lily, orchid
Your groupings might be different -- and that is great! The important thing is that you picked a rule and applied it consistently.
3 Rewrite with Loops Medium Screen-Free
These instructions have repeating patterns. Rewrite each one using a loop.
A:
- Jump
- Clap
- Jump
- Clap
- Jump
- Clap
- Jump
- Clap
B:
- Draw a line
- Turn right
- Draw a line
- Turn right
- Draw a line
- Turn right
B: Repeat 3 times: Draw a line, Turn right. (The pair "Draw a line, Turn right" repeats 3 times. This would draw a triangle!)
4 Scratch: Draw a Pentagon Medium Scratch
In Lesson 4, you drew a square (repeat 4, turn 90 degrees) and learned about triangles (repeat 3, turn 120 degrees). Now draw a pentagon (five-sided shape)!
Here is the secret: to figure out the turn angle for any shape, divide 360 by the number of sides.
- Triangle: 360 / 3 = 120 degrees
- Square: 360 / 4 = 90 degrees
- Pentagon: 360 / 5 = ??? degrees
- Events: "when green flag clicked"
- Pen: "erase all"
- Pen: "pen down"
- Control: "repeat 5"
- Motion: "move 80 steps" (inside repeat)
- Motion: "turn right 72 degrees" (inside repeat)
Bonus: Can you draw a hexagon (6 sides)? The angle would be 360 / 6 = 60 degrees!
5 Scratch: Rainbow Circle Art Medium Scratch
Create a beautiful design by drawing many shapes that rotate around a center point. Use the pen and a loop with color changes.
Goal: Draw 12 squares in a circle, each one rotated a little and a different color.
- Events: "when green flag clicked"
- Pen: "erase all"
- Pen: "pen down"
- Pen: "set pen size to 2"
- Control: "repeat 12" (outer loop -- 12 squares)
- Pen: "change pen color by 15" (inside outer loop)
- Control: "repeat 4" (inside outer loop -- draws 1 square)
- Motion: "move 80 steps" (inside inner loop)
- Motion: "turn right 90 degrees" (inside inner loop)
- Motion: "turn right 30 degrees" (inside outer loop, after inner loop)
This creates 12 squares arranged in a circle, each a different color. It looks like a flower made of squares!
6 Scratch: Design Your Own Pattern Challenge Scratch
Create your own original geometric art in Scratch! Your design must include:
- At least one repeat block (loop)
- At least one color change
- At least two different shapes or movements
When you are done, show it to your parent and explain: What is the pattern? What is the rule? How does the loop help?
- Draw a spiral: in each loop, increase the number of steps by a little bit (use "change" blocks or variables)
- Stamp the sprite in different positions to create a grid pattern
- Draw overlapping circles at different angles
- Create a staircase pattern using move and turn blocks
- Draw a star by using "repeat 5" with "move 100 steps" and "turn right 144 degrees"
Experiment! Some of the coolest patterns are discovered by accident when you try unexpected numbers.