The code snippet you provided demonstrates the use of Selection.
Here's a breakdown of the concepts:
-
Selection: This is used when the program makes decisions based on certain conditions. The provided code makes decisions using
IF
,ELSE IF
, andELSE
constructs to determine the outcome based on the values ofgoalsIn
andgoalsOut
. -
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.
-
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.