ALGORITHM & FLOWCHARTS-VIII
Fill in the blanks from the words given below: -
(Selective, Test, Top Tested, Switch, Decision, Nested if, Sequential,
Three, go-to, Pseudocodes, Test, Algorithm, Default, Flowchart,
Fixed,)
1. _______________________ Box is used for checking or applying
conditions.
2. A Jump in a program is done with __________ statement.
3. Selection statement is mainly based on ____________ condition.
4. Algorithms are also called as ___________________
5. The step-by-step procedure to solve any problem is called________
6. _____________are the pictorial representation of a program.
7. An algorithm should involve ____________number of steps to reach
a solution.
8. Control Flow statements are of _______ types.
9. In _______________Work Flow statement various activities are
executed one after the other and always execution moves forward.
10. In ________________Work Flow statement user has to select
one option from various options.
11. Multiple If statement is also known as ____________ statement.
12. If statement and _________ are selective workflow statement.
13. The Case, Break and ___________ are present inside the switch
statement.
14. Entry control Loop are also known as _________ loop.
15. In Exit Control loop the ________ condition is checked at the last.
MCQ
In a flowchart, _______________ indicate the sequence of steps and
the direction of flow.
1. Flow lines
2. Decision box
3. Processing box
_____________ is used to accept input and give output of a program.
1. Flow lines
2. Input/Output box
3. Decision box
The .......... represents the starting or ending point of a program.
1. Decision box
2. Flow lines
3. Start /Stop box
__________ connectors are used to join the parts of a flowchart
contained within the same page.
1. On Page
2. Off Page
3. None of these
When an algorithm is written in the form of a programming language, it
becomes a _________
a) Flowchart
b) Program
c) Pseudo code
d) Syntax
Write True or False: -
1. Algorithm follows a step by step procedure (________)
2. Control Flow is of four types (_______)
3. If is an example of selection statement (________)
4. Flowlines are used in Algorithm. (_________)
5. There are three condition necessary for looping or iteration.
(______).
6. The default statement is present in nested if statement. (_________)
7. The Do…While loop is a variant of While loop statement. (_______)
8. J++ is equivalent to J=J+1. (_______)
9. The Increment or decrement statement in for loop is present inside
the body. (__________)
10. Flowcharts are also called as Pseudocodes (________).
ANSWER THE FOLLOWING QUESTIONS
• Differentiate Between Entry Control Loop and Exit Control Loop
• Write a short note on the various types of symbols used in a
flowchart.
• Write a note on types of Control Flow Statement.
• Draw a flowchart to show whether a number is even or odd.
• Write the syntax and one example of For Loop.