Aim Theory:: Practical No: 1
Aim Theory:: Practical No: 1
Theory :
1. Flowcharts are nothing but the graphical representation of the data or the algorithm for a
better understanding of the code visually. It displays step-by-step solutions to a problem,
algorithm, or process. It is a pictorial way of representing steps that are preferred by most
beginner-level programmers to understand algorithms of computer science, thus it
contributes to troubleshooting the issues in the algorithm. A flowchart is a picture of boxes
that indicates the process flow in a sequential manner. Since a flowchart is a pictorial
representation of a process or algorithm, it’s easy to interpret and understand the process.
To draw a flowchart, certain rules need to be followed which are followed by all
professionals to draw a flowchart and is widely accepted all over the countries.
2. Use of a flowchart :
1|Page
Also known as an “Action
Symbol,” this shape
Process symbol represents a process, action,
or function. It’s the most
widely-used symbol in
flowcharting.
Indicates a question to be
answered — usually yes/no
or true/false. The flowchart
Decision symbol path may then split off into
different branches depending
on the answer or
consequences thereafter.
2|Page
4. General rules for flowcharts :
All symbols of the flowchart are connected by flow lines (note arrows, not lines)
Flow lines enter the top of the symbol and exit out the bottom, except for the Decision
symbol, which can have flow lines exiting from the bottom or the sides
Flowcharts are drawn so flow generally goes from top to bottom.
The beginning and the end of the flowchart is indicated using the Terminal symbol
3|Page
2. Scenario: You listen to the weather report
If it is raining you will get a drive to school
If it is not raining you will take the bus
No
yes
4|Page