Question 21 (Mandatory) (2 points)
Consider the following statement:
If ...
Then ...
Else ...
End
Which of these best describes the behavior of the code?
The program evaluates the IF condition. If it is TRUE, then the THEN happens. If
it is FALSE, the ELSE happens. Regardless of these outcomes, the program
continues after END (unless a close action occurs in the triggered components)
The program evaluates the IF condition. If it is TRUE, then the THEN happens. If
it is FALSE, the ELSE condition is evaluated. If the ELSE condition is false, the
program continues after END (unless a close action occurs in the triggered
components)