Flowchart Symbols Presentation
Flowchart Symbols Presentation
Symbols
• Learn about the common symbols used to
represent algorithms in flowcharts.
Start Symbol
• A green oval represents the start of a
program. It marks the beginning of the
algorithm.
Stop Symbol
• A red oval represents the stop of a program. It
marks the end of the algorithm.
Arrow Symbol
• A black arrow connects shapes and shows the
path to follow in the algorithm.
Input Symbol
• A parallelogram represents input. Light blue is
used for input. Example: a user entering data.
Output Symbol
• A parallelogram represents output. Dark blue
is used for output. Example: displaying a
result.
Process Symbol
• A rectangle represents a process. Example:
calculating a value.
Decision Symbol
• A diamond represents a decision point, such
as a yes or no question.
Sub-routine Symbol
• A rectangle with double lines represents a
sub-routine. Used for reusable sections of
code.