Top Banner
19
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: ppt of flowchart
Page 2: ppt of flowchart

BRANCH: ELECTRICAL BATCH : F‘1gACTIVE LEARNING ASSIGMENT

SUBJECT : COMPUTER PROGRAMMING AND UTILIZATION

Guided by : sejal madam

Page 3: ppt of flowchart

Kavan Patel -140120109032Harshid Panchal -1401201090 23Mihir Thaker -140120109060

Group no : 2

PREPARED BY: ENROLLMENT NO.

Page 4: ppt of flowchart

FLOWCHART

Topic Name

Page 5: ppt of flowchart

A Flow chart•Is a type of diagram that represents an algorithm, workflow or process, showing the steps as boxes of various kinds, and their order by connecting them with arrows.

• Flow charts are used in analysing ,designing, documenting or managing a process or program in various fields.

Page 6: ppt of flowchart

I. Flow chart are used in designing and documenting complex processes or programs.

II. Like other types of diagrams , they help visualize what is going on and thereby help the people to understand a process , and perhaps also find flaws, bottlenecks , and other less-obvious features within it.

III. There are many different types of flowcharts , and each type has its own repertoire of boxes and notational conventions.

Overview

Page 7: ppt of flowchart

Overview

The two most common types of boxes in a flow chart are:

1) a processing step, usually called activity, and denoted as a rectangular box

2) a decision , usually denoted as a diamond.

Page 8: ppt of flowchart

Symbols of Flow chart

Page 9: ppt of flowchart

TerminatorRepresented as circles , ovals or rounded rectangles, usually containing the word “Start” or “End” , or another phrase signalling the start or end of a process , such as “submit inquiry” or “receive product”.

Start / end

Page 10: ppt of flowchart

Arrows• Showing “flow of control”.

• An arrow coming from one symbol and ending at another symbol represents that control passes to the symbol the arrow points to .

• The line for the arrow can be solid or dashed.

• The meaning of the arrow with dashed line may differ from one flowchart to another and can be defined in the legend

Page 11: ppt of flowchart

Processing• Represented as rectangles.

• Use it to represent an event which is controlled within the process.

• Typically this will be a step or action which is taken.

• In most flowcharts this will be the most frequently used symbol.

• Examples: “ Add 1 to X”; “replace identified part”; “save changes” or similar.

processing

Page 12: ppt of flowchart

INPUT / OUTPUTRepresented as a parallelogram.Represents material or information entering or leaving the system, such as customer order (input) or a product (output).Example: Get X from the user; display X.

Input/output

Page 13: ppt of flowchart

DECISION A decision or branching point. Lines representing different decisions emerge from different points of the diamond.

decision

Page 14: ppt of flowchart

1)Program flowchart

2)System flowchart

Types of flowchart

Page 15: ppt of flowchart

Program flowchart:shows the sequence of instructions in a program or subroutine. These instructions are followed to procedure the needed output

START

INPUT

PROCESS

OUTPUT

DECISION

END

Page 16: ppt of flowchart

DRAW A FLOWCHART TO FIND THE SUM OF FIRST FIFTY NATURAL NUMBER.

Page 17: ppt of flowchart

Draw a flowchart to find the largest of three numbers A, B & C.

Page 18: ppt of flowchart

Draw a Flow Chart To Find factorial of given number.Start

Readn

i=1f=1

Ifi<=

nPrint

“factorial ” , F

Stop

f = f * i

i = i + 1

Page 19: ppt of flowchart

THANK YOU. . . .. .