WorksheetsICT Programming Lesson 3
Total questions: 16
Worksheet time: 8mins
Which programming structure continues to repeat actions while a condition remains true?
Loop
Sequence
Selection
Object
Which programming structure performs a set of instructions in the order they appear?
Loop
Sequence
Selection
Object
When a computer carries out a program's instructions, it is called __________ the program.
executing
compiling
debugging
loading
Which programming structure makes a decision in order to determine which set of instructions to carry out?
Loop
Sequence
Selection
Object
The if/else instruction set is considered a(n) ________________ structure.
selection
iteration
sequence
recursion
The while instruction set is considered a(n) structure.
sequence
selection
object
What is a control structure?
Determine the order in which instructions are executed, as well as the number of times or even whether an instruction is executed
Pseudocode
Determines whether an existing program performs its intended task and works efficiently
Create procedures needed to execute the solution.
There are main control structures.
2
5
6
Which of the following is not a common loop statement?
Do-while
While
Stop
For
There are basic types of loops.
6
5
2
Which of the following are types of loops?
Count controlled
Text controlled
Program controlled
Bug controlled
The main logic control structures include:
Text, numbers and data
Control, do-while, selection
Selection, control and loop
Loop, control, and object
Which structure allows the computer to execute an instruction only if a certain condition exists?
Logic
Selection
Control
Loop
An do-while statement tests a condition and is an example of a:
Logic
Selection
Control
Loop
This control structure will execute each instruction one after another until it reaches the end of the program.
Logic
Selection
Control
Loop
What control structure is also called iteration?
Logic
Selection
Control
Loop
