Multiple choice

A _______ always contains an ELSE clause.

  1. single-alternative block IF

  2. double-alternative block IF

  3. SELECT CASE

  4. menu

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

A double-alternative block IF statement has both a THEN clause and an ELSE clause. This structure handles two possible outcomes - one for when the condition is true, and one for when it's false. Single-alternative IF statements only have a THEN clause, and SELECT CASE handles multiple alternatives through different CASE blocks.