Computer Fundamentals Multiple choice Questions and Answers on Flowcharting Rules for Freshers

https://www.computersprofessor.com/2018/12/computer-fundamentals-multiple-choice_11.html
1. A ______________ is diagram that depicts the flow of a program.
a) Algorithm
b) Hash Table
c) Graph
d) Flowchart
Answer: d
Explanation: A flowchart is a diagram that helps us determine the flow of the program. Other options are irrelevant.
2. Terminals are represented by diagonals in a flowchart.
a) True
b) False
Answer: b
Explanation: The statement is false. Terminals are represented by rounded rectangles. They indicate the starting or ending point in a flowchart.
3. The operation represented by parallelograms.
a) Input/Output
b) Assignment
c) Comparison
d) Conditions
Answer: a
Explanation: The input/output operations are represented by parallelograms. They generally are used to display messages during input and output part of a program.
4. Which of the following is not a flowchart structure?
a) Process
b) Sequence
c) Repetition
d) Case
Answer: a
Explanation: There are basically four flowcharting structures:
• Decision
• Repetition
• Case
• Sequence.
5. The action performed by a ___________ structure must eventually cause the loop to terminate.
a) sequence
b) case
c) repetition
d) process
Answer: c
Explanation: The action performed by a repetition structure must eventually cause the loop to terminate. Otherwise, an infinite loop is created.
Answer: a
Explanation: This symbol is that of a module. The terminal is denoted by a rounded rectangle. I/O operation by a parallelogram and process by a rectangle.
Answer: c
Explanation: This is a repetition structure. The action performed by a repetition structure must eventually cause the loop to terminate. Otherwise, an infinite loop is created.
Answer: b
Explanation: This is a case structure. Certain cases are given along with a default case in the case structure.
9. A _______ is a connector showing the relationship between the representative shapes.
a) line
b) arrow
c) Process
d) box
Answer: b
Explanation: Arrows are the connectors that show the relationship between different shapes. They also show the flow of the program.
Answer: a
Explanation: The answer is decision. Conditions are given in this box and then the result is checked accordingly if the condition is true or false.