What are the three basic programming constructs?
Sequence, selection and iteration
Sequence, selection and variables
Sequence, iteration and variables
Which of the following statements implements a count-controlled iteration?
for next
repeat until
while repeat
What is a sequence?
A programming construct that determines the order in which data is stored
A programming construct that determines the order in which instructions are carried out
A programming construct that determines the order in which files are accessed
Which form of condition-controlled iteration tests the condition at the end of the loop?
Which form of condition-controlled iteration tests the condition at the start of the loop?
Which of the following is another name for iteration?
Selecting
Decision
Looping
Which of the following allows a programmer to implement selection?
if else end if
if while else
What is the term given to the process of including one programming construct within another?
Iteration
Nesting
What is a subroutine used for?
A subroutine is used to perform a particular task
A subroutine is used at the start of a program
A subroutine is part of an iteration programming construct
What are the two possible values as a result of testing a condition?
YES or NO
TRUE or FALSE
POSITIVE or NEGATIVE