0% found this document useful (0 votes)
24 views

Flowcharts

The document discusses flowcharts, including their introduction, common symbols used such as terminal, initialization, process, decision, input/output, direction arrow, and connector symbols. It provides an example flowchart to calculate the area of a circle.

Uploaded by

Emmerson Gonzaga
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views

Flowcharts

The document discusses flowcharts, including their introduction, common symbols used such as terminal, initialization, process, decision, input/output, direction arrow, and connector symbols. It provides an example flowchart to calculate the area of a circle.

Uploaded by

Emmerson Gonzaga
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 4

FLOWCHARTS

Introduction

Flowchart is a step by step process using an


organized flow of symbols represented by different shapes
with corresponding functions in each figures.
Flowchart Symbols
Terminal symbol is used to declare the start point or end point.
Initialization /Preparation symbol is used to symbolize the variables for the algorithm or
programs.

Process symbol is used to symbolize the process of computation in the algorithm or programs.

Decision symbol is used to symbolize a condition that would be answerable by either True or False.

Input /Output symbol is used to symbolize the process of accepting or displaying data in the flowchart.

Direction Arrow symbol is used to symbolize the flow in the flowchart.

Connector symbol is used to symbolize the connection in the flowchart specially if there are
loops or iteration.
START
Example
R = I unit
pie = 3.1416

AC = pie * R * R

print AC

END

You might also like