What is selection?
Repeating a number of steps
A decision point in a program
The order in which instructions are carried out
Why is selection important?
Selection allows a number of steps to be repeated
Selection allows multiple paths through a program
Selection determines the order in which instructions are carried out
What is a statement?
A statement is a single instruction
A statement is a block of code
A statement is a repeated instruction
In programming how is selection implemented?
IF-OTHERWISE
IF-ELSE
DO-ELSE
How many paths through a program does an IF statement allow?
One path
Three paths
Two paths
Which statement is used to add further choices to a program in Python?
ELSE IF
DO OTHERWISE
elif
What does an IF statement represent?
A question
An answer
An iteration
What does an ELSE statement represent?
The path to follow when the answer to the question is True
The path to follow when the answer to the question is False
What does ELSE IF represent?
An extra answer
An extra choice
An extra iteration
In programming what is the answer to an IF question?
Yes or No
Positive or Negative
True or False