Algorithms & Flow Charts
Algorithms & Flow Charts
I.
1.
2.
c) Flow chart
d) Program
b) Decision Box
c) Process Box
d) None of these
b) Terminal Box
c) Input/Output Box
d) None of these
b) Oval
c) Connector
d) None of these
b) Algorithm
c) Program
d) Flow chart
9.
b) Algorithm
8.
d) Source
The symbol used to show a jump from one point in the process flow to another is
a) Flow lines
7.
c) Program
The box used to indicate the beginning and the end of a flow chart is
a) Decision Box
6.
b) Flow chart
This box is used to show actions or processes such as addition and subtraction.
a) Terminal Box
5.
d) graph
4.
c) Chart
A set of commands that are given to the computer to perform a specific task is
a) Algorithm
3.
b) Pseudo code
b) Begin
c) Input
d) None of these
c) Process
d) Input/Output
c) Billgates
d) Steve Jobs
b) Decision
b) Frank Gilbreth
II.
1.
A Flow chart is a pictorial representation of steps that should be followed to solve a problem.
2.
3.
4.
A connector symbol is used to connect parts of a flow chart that are on different pages.
5.
Flow lines symbols are used to connect one box of flow chart to another.
6.
- TRUE
2.
- FALSE
3.
- FALSE
4.
- TRUE
5.
- TRUE
3.
4.
5.
6.
7.
Define Program.
A Program is a set of commands that are given to the computer to carry out a specific task.
Define Algorithm.
An Algorithm is a list of well-defined steps or instructions for completing a task systematically. An Algorithm
helps us to think logically and to find out the best way to solve a problem and reach a solution.
Define Flow Chart.
A Flow chart is a diagrammatic representation of steps to be taken to solve a problem. A Flow chart is
pictorial in nature and facilitates easy understanding of the solution.
What is Looping ?
Repeating a set of instructions until a specific condition is fulfilled is known as Looping.
What is the use of a Terminal box ?
A Terminal Box is use to indicate the beginning and the end of a flow chart. It is represented by the oval
shaped symbol.
What is the use of connector symbol ?
A Flow chart may be long and span one of more pages. A connector is used to show a jump from one point in
the process flow to another.
List out the special softwares used to draw flow charts.
a) Edraw
b) SmartDraw
c) Visio
V.
Answer in detail:
1.
2.
3.
4.
-35.
8.
START
START
INPUT Side
INPUT L,B
P = 2 * (L + B)
PRINT Area
PRINT P
STOP
6.
STOP
STOP
7.
no
IF
A>B
PRINT A
PRINT B
START
INPUT L,B
STOP
10. Draw a Flow chart to calculate and display the
table of 10.
Area = L * B
START
PRINT Area
I=1
PRINT
I ; x 10 = ; I*10
STOP
I=I+1
no
yes
IF
I>10
STOP
-411. Draw all the Symbols used in Flow chart and its functions.
Name
Symbol
Function
Oval
Start / Stop
Parallelogram
Input / Output
Rectangle
Process
Diamond
Decision
Circle
Connector
Arrows
Flow Lines
*****************************************