16
Flowcharts Symbols 1

1 Flowcharts Symbols - WordPress.com

  • Upload
    others

  • View
    1

  • Download
    0

Embed Size (px)

Citation preview

FlowchartsSymbols

1

Flowcharts

What is a flowchart?

A flowchart is a graphical way to show how to solve a problem.

Graphical means, making use of diagrams / symbols

A flowchart is a diagram that shows a step-by-step list of instructions that need to be followed to solve a problem.

List of steps to solve a problem is called an algorithm.

2

Flowchart Components

A flowchart is made up of:

1. Flowchart Symbols

• Symbols indicate the action that is carried out at

each step in a flowchart.

2. Flowlines

• Flowlines show thethe order in which to go from

one symbol to the next.

3

•The START symbol shows where a flowchart begins.

•The END symbol indicates where a flowchart ends.

•START or END is written inside the oval.

Flowchart Symbols : Start / End4

Start

End

Start End

Flowchart Symbols : Input / Output

• A parallelogram represents both INPUT and OUTPUT actions

• INPUT symbol indicates the point at which data needed to do the

calculation is received e.g to calculate area we need to

• OUTPUT symbol indicates the point at which results are shown.

5

INPUT or OUTPUT

INPUT length, width

OUTPUT area

Flowchart Symbols: Process

•A rectangle represents a PROCESS in a flowchart.

•The process box indicates that data is being manipulated.

▪ Some operations that can be carried out in a process box are :

➢ ADD, SUBTRACT, MULTIPLY, DIVIDE

•The task being performed is written inside the process box.

6

PROCESS

area = length x widthperimeter =

length + length + width + width

Flowchart Symbols: Decision Box

• A DECISION BOX is represented by a diamond shape.

• It indicates a place where we have to make a choice by answering a

question written inside the decision box.

• The question has only two possible answers: YES or NO

• The answer will determine the next step to follow.

7

DECISION BOX

marks < 35?

Flowchart Symbols: Flowlines

•Flowlines are represented using arrows.

•A flowline indicates the movement of data through the

flowchart by connecting one symbol to another.

•A flowline points to the next step to follow.8

FLOWLINES

Guidelines to draw flowcharts

1. The direction of flow in a flowchart is

▪ From top to bottom

▪ Left to right

2. Every flowchart must contain a starting

point and an ending point.

9

Guidelines to draw flowcharts

3. INPUT, OUTPUT and PROCESS symbols have

one incoming flowline and one outgoing

flowline.

10

Input next

numberOutput result sum = num1 + num2

5. Each arrow that flows out of a DECISION BOX is labelled

with one of the two possible choices

Guidelines to draw flowcharts

4. A DECISION BOX has ONE incoming flowline but TWO

outgoing flowlines.

11

is count = 10?age < 18?

: YES or NO.

NO

YES

YESNO

Homework

Computer Science Workbook

• Page 62 Question 8

12

Homework 2

13

Homework14

Homework15

Homework16