IF (timer <= 0) OR (numberOfLives == 0):

PRINT "Game Over"

This code uses:
IterationSequencingSelection

1 answer

The code you've provided primarily involves selection.

Here's a breakdown:

  • Selection: The line contains an IF statement that evaluates two conditions. If either of those conditions is true (timer <= 0 or numberOfLives == 0), it executes the action to print "Game Over". This is a classic example of a selection structure, where the program decides which block of code to execute based on a condition.

  • Sequencing: While the code executes in a sequential manner (the IF condition is evaluated in the sequence it's written), the presence of the IF statement indicates that this is more about selection.

  • Iteration: There is no looping (like for or while statements) in this snippet, so it does not involve iteration.

Thus, the correct answer is Selection.