FLOW
CHART Presented by-
Noman Jamal
Master of Computer
Application
Prof. Pramila Chandel Ma’am
Department of Computer Science and
Engineering
What is Flow
Chart?
A flowchart is a type of diagram that represents a
workflow or process.
History of Flow Chart
The first flowchart was created by Prof. Von
Neuman in 1945.
Flowcharts are important for planning and
working of a program.
Flowchart decreases our efforts i.e they are
easy to understand and check the logic &
algorithm.
CONTENTS
1. •OVERVIEW
2. •SYMBOLS
3. •EXAMPLES
1.OVERVIEW
Flowchart are the graphical representation
of a solution to a particular problem which
comes under the category of Programming
Practices & Techniques
In simple word flowchart is a Graphical
representation of a program
Flowchart are symbolic diagrams which
shows types of data(numeric, character…
etc) data flow, control flow and
programming logic.
2.SYMBOLS
1.TERMINALS
Start/End
1. This symbol shows the beginning or
ending of a program i.e. first and the
last element of flowchart.
2. It is single directional i.e only one
flow line (either incoming line or
outgoing line can be connected with
terminal symbol.
2. INPUT/OUTPUT SYMBOL
IINPUT/OUTPUT
A Parallelogram is used to represent
input and output operation, it can
have 2 flow lines (in coming & out
going liness)
3. PROCESS SYMBOL
PROCESS
This symbol is used for showing
mathematical calculation, change in
data or any type of processing on data,
it can have 2also flow lines (incoming
& out going lines).
4.FLOW LINES
A Straight line between two symbols
shows the logical flow of control in a
program is flow line
5.DECISION SYMBOL
DECISION
A Diamond symbol is used to show or
apply condition , it has single flow line for
input and two flow lines for output i.e one
for true part and 0ne for false part
Types of Flowchart
Sequential Selective Iterative
Sequential Flow chart
As the name suggests,
the control flow and
data flow is
sequential flowchart.
Selective Flow
Chart
Selective logic simlpy involves a
number of conditions or parameters
which decides one out of several
written modules. The structures
which use these type of logic are
known Conditional structures.
Iterative Flow
Chart
In a flowchart, an iteration
is a loop that represents the
repetition of steps in an
algorithm. It's also known as
looping.
EXAMPLES
ADD
TWO
NUMBERS
Sequential Flow chart
Selective Flow Chart
Check weather number is even or
odd
Iterative Flow
Chart
For Loop
While Loop
do-while Loop
#include<stdio.h>
void main()
{
printf(“Thanking You”);
Return O;
}

Presentation on Flow chart in programming language flowchart.pptx