Complete the code to start a flowchart with the correct symbol.
Start with a [1] symbol to begin the flowchart.
The oval shape is used to represent the start or end of a flowchart, like turning on a machine.
Complete the code to represent a decision point in a flowchart.
Use a [1] shape to show a question or decision in the flowchart.
The diamond shape is used to represent decisions or questions that lead to different paths, like asking "Is it raining?".
Fix the error in the flowchart symbol for a process step.
A process step should be shown with a [1] shape, not a diamond.
The rectangle shape represents a process or action step, like "Mix ingredients" in a recipe.
Fill both blanks to complete the flowchart code for input and output steps.
Use a [1] shape for input and a [2] shape for output in a flowchart.
The parallelogram shape is used for both input and output steps, like "Enter name" or "Display result".
Fill all three blanks to create a simple flowchart code snippet for checking if a number is positive.
Start with [1], then use [2] to ask if number > 0, finally [3] to end.
The flowchart starts with an oval (start), uses a diamond for the decision "Is number > 0?", and ends with an oval (end).