Flowcharts symbols
Input output
Task: Flowchart creator
Use the flowchart creator program (click on the button below) to copy the flowchart below.
Can you work out what the flowchart does?
Task: Times Table
Complete the flowchart below using flowchart creator to ask the end-user to enter a number. The program will then display the full times table, from 1 to 10, for this number.
Task: Login
Complete the flowchart below using flowchart creator for a user login. A login form should ask the user to enter their username and password. It will then check if these login details are correct before displaying either a welcome message or an error message.
Pseudocode
Most programs are developed using programming languages. These languages have specific syntax that must be used so that the program will run properly.
Pseudocode is not a programming language, it is a simple way of describing a set of instructions that does not have to use specific syntax. Common pseudocode notation
There is no strict set of standard notations for pseudocode, but some of the most widely recognised are:
INPUT
- indicates a user will be inputting something
OUTPUT
- indicates that an output will appear on the screen
WHILE
- a loop (iteration that has a condition at the beginning)
FOR
- a counting loop (iteration)
REPEAT - UNTIL
- a loop (iteration) that has a condition at the end
IF - THEN - ELSE
- a decision (selection) in which a choice is made
--> any instructions that occur inside a selection or iteration are usually indented
Click on the button below for information on AQA pseudo code
Task: Pseudocode
Now lest take all of our flowchart algorithms and turn them into pseudocode
Recent Comments
Teacher Date: 2025-09-28
Guest