Draw This - beginner
Look at the number sequence: 2, 4, 8, 16, 32. Draw a flowchart that shows how to find the next number in this pattern.
5 minutes
Hint 1
Hint 2
Hint 3
Hint 4
Look at the number sequence: 2, 4, 8, 16, 32. Draw a flowchart that shows how to find the next number in this pattern.
+-------+
| Start |
+-------+
|
v
+-----------------+
| Input last number|
+-----------------+
|
v
+---------------------+
| Multiply number by 2 |
+---------------------+
|
v
+-----------------+
| Output next num |
+-----------------+
|
v
+-----+
| End |
+-----+This flowchart starts by taking the last number in the sequence as input. Then it multiplies that number by 2, because each number in the pattern is double the previous one. Finally, it outputs the next number and ends. This matches the pattern 2, 4, 8, 16, 32 where each number is twice the one before.