0
0
Intro to Computingfundamentals~10 mins

Algorithm as a recipe analogy in Intro to Computing - Draw & Build Visually

Choose your learning style9 modes available
Draw This - beginner

Draw a flowchart that shows the steps of making a peanut butter and jelly sandwich as an algorithm. Include steps like getting bread, spreading peanut butter, spreading jelly, and putting the slices together.

7 minutes
Hint 1
Hint 2
Hint 3
Hint 4
Grading Criteria
Start and End symbols (ovals) present
All main steps included: Get Bread, Spread Peanut Butter, Spread Jelly, Put Slices Together
Steps shown as rectangles
Arrows correctly show the order of steps
No missing or extra steps
Solution
  _______           _______           _______           _______           _______
 /       \         /       \         /       \         /       \         /       \
|  Start  |------->| Get    |------->| Spread |------->| Spread |------->| Put    |
 \_______/         | Bread  |         | Peanut |         | Jelly  |         | Slices |
                   \_______/         | Butter |         \_______/         | Together|
                                      \_______/                           \_______/
                                                                           |
                                                                           |
                                                                           v
                                                                       _______
                                                                      /       \
                                                                     |  End   |
                                                                      \_______/

This flowchart starts with the Start symbol (oval). Then it shows the first step: Get Bread (rectangle). Next, it moves to Spread Peanut Butter, then Spread Jelly, each as rectangles representing actions. After that, it shows Put Slices Together. Finally, the flow ends at the End symbol (oval). Arrows connect each step in order, showing the sequence clearly.

This is like a recipe: a list of clear steps to follow to make a sandwich. Each step is simple and must be done in order.

Variations - 2 Challenges
[beginner] Draw a flowchart for making a cup of tea as an algorithm, including boiling water, adding tea leaves, steeping, and pouring tea.
[intermediate] Draw a flowchart for making a peanut butter and jelly sandwich but include a decision step to check if the bread is fresh. If not fresh, get new bread before continuing.