Presentation on Flow chart in programming language flowchart.pptx
nomanjamal98
37 views
21 slides
Sep 28, 2024
Slide 1 of 21
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
About This Presentation
Presentation on Flow chart in programming language
Size: 230.98 KB
Language: en
Added: Sep 28, 2024
Slides: 21 pages
Slide Content
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
CONTENTS
1.TERMINALS Start/End This symbol shows the beginning or ending of a program i.e. first and the last element of flowchart. 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 I INPUT/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
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.
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 > v oid main() { p rintf (“ Thanking You ”); Return O; }