Presentation on Flow chart in programming language flowchart.pptx

nomanjamal98 37 views 21 slides Sep 28, 2024
Slide 1
Slide 1 of 21
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12
Slide 13
13
Slide 14
14
Slide 15
15
Slide 16
16
Slide 17
17
Slide 18
18
Slide 19
19
Slide 20
20
Slide 21
21

About This Presentation

Presentation on Flow chart in programming language


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; }
Tags