Multiple choice

The last statement in a block IF is always _______.

  1. END

  2. END BLOCK

  3. ELSEIF

  4. END IF

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

In block IF structures, the block must be properly terminated. The END IF statement marks the conclusion of the IF block. While END alone terminates other structures like SELECT CASE, the specific syntax for block IF requires END IF to properly close the conditional block and maintain code clarity.