wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

FLOWCHART REVIEW

Total questions: 13

Worksheet time: 5mins

Name
Class
Date
1.

What do flowcharts represent?

a)

DIfferences

b)

Program Flow

c)

Relationship

d)

Tasks

2.

It refers to a list of instructions and a sequence of functions.

a)

Algorithm

b)

Direction

c)

Outline

d)

Procedure

3.

A flowchart symbol that represents the start and end.

a)

Decision

b)

Flow Line

c)

Processing

d)

Terminal

4.

A flowchart symbol that is used between alternatives with the outcomes YES & NO.

a)

Decision

b)

Flow Line

c)

Processing

d)

Terminal

5.

A flowchart symbol that indicates the direction of logic by connecting symbols.

a)

Decision

b)

Flow Line

c)

Processing

d)

Terminal

6.

A flowchart symbol that is used for arithmetic operations & data manipulations.

a)

Decision

b)

Flow Line

c)

Processing

d)

Terminal

7.

 A flowchart symbol that is used for taking in and displaying data.

a)

Decision

b)

Input/Output

c)

On-page Connector

d)

Off-page Connector

8.

A flowchart symbol that is used to join different flowchart systems on the same page.

a)

Decision

b)

Input/Output

c)

On-page Connector

d)

Off-page Connector

9.

A flowchart symbol that is used to connect flowchart portions on different pages.

a)

Decision

b)

Input/Output

c)

On-page Connector

d)

Off-page Connector

10.

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.

a)

Conditional Flow

b)

Sequential Flow

c)

Iterative Flow

11.

Allows the program to make decisions, executing different code blocks depending on whether the condition is true or false.

a)

Conditional Flow

b)

Sequential Flow

c)

Iterative Flow

12.

Allows the program to repeat a block of code a specific number of times, based on a counter variable.

a)

Conditional Flow

b)

Sequential Flow

c)

Iterative Flow

13.

Which among the choices is the correct flow of process based on the flowchart given?

a)

START

INPUT Full Name

PRINT Full Name

END

b)

START

PRINT Full Name

INPUT Full Name

END

c)

NONE OF THE ABOVE