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
ornumberOfLives == 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 theIF
statement indicates that this is more about selection. -
Iteration: There is no looping (like
for
orwhile
statements) in this snippet, so it does not involve iteration.
Thus, the correct answer is Selection.