NEW
Font size
WorksheetsFLOWCHART REVIEW
Total questions: 13
Worksheet time: 5mins
What do flowcharts represent?
DIfferences
Program Flow
Relationship
Tasks
It refers to a list of instructions and a sequence of functions.
Algorithm
Direction
Outline
Procedure
A flowchart symbol that represents the start and end.
Decision
Flow Line
Processing
Terminal
A flowchart symbol that is used between alternatives with the outcomes YES & NO.
Decision
Flow Line
Processing
Terminal
A flowchart symbol that indicates the direction of logic by connecting symbols.
Decision
Flow Line
Processing
Terminal
A flowchart symbol that is used for arithmetic operations & data manipulations.
Decision
Flow Line
Processing
Terminal
A flowchart symbol that is used for taking in and displaying data.
Decision
Input/Output
On-page Connector
Off-page Connector
A flowchart symbol that is used to join different flowchart systems on the same page.
Decision
Input/Output
On-page Connector
Off-page Connector
A flowchart symbol that is used to connect flowchart portions on different pages.
Decision
Input/Output
On-page Connector
Off-page Connector
This linear execution allows the program to perform a series of tasks in a predefined sequence, where statements are executed in the order they appear in the code, one after the other.
Conditional Flow
Sequential Flow
Iterative Flow
Allows the program to make decisions, executing different code blocks depending on whether the condition is true or false.
Conditional Flow
Sequential Flow
Iterative Flow
Allows the program to repeat a block of code a specific number of times, based on a counter variable.
Conditional Flow
Sequential Flow
Iterative Flow
Which among the choices is the correct flow of process based on the flowchart given?
START
INPUT Full Name
PRINT Full Name
END
START
PRINT Full Name
INPUT Full Name
END
NONE OF THE ABOVE
