IF goalsIn == goalsOut:

PRINT "It's a draw"
ELSE IF goalsIn > goalsOut:
PRINT "Player 1 wins!"
ELSE:
PRINT "Player 2 wins!"

This code uses:
IterationSequencingSelection

1 answer

The code snippet you provided demonstrates the use of Selection.

Here's a breakdown of the concepts:

  1. Selection: This is used when the program makes decisions based on certain conditions. The provided code makes decisions using IF, ELSE IF, and ELSE constructs to determine the outcome based on the values of goalsIn and goalsOut.

  2. Sequencing: This refers to the execution of commands in the order they are written. Your code will execute from the top to the bottom, checking conditions sequentially.

  3. Iteration: This involves repeating a set of instructions until a certain condition is met, usually handled by loops (like for, while, etc.). Your code does not currently include any iterative structures.

In summary, the code primarily utilizes Selection to control the flow based on the conditions provided.