Multiple choice

Which of the following is not a control statement?

  1. SELECT CASE

  2. single-alternative block IF

  3. double-alternative block IF

  4. END

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

SELECT CASE and both single-alternative and double-alternative block IF statements are all control structures that direct program flow. END is a termination keyword used to close blocks, but it doesn't control program flow itself. END simply marks the conclusion of a block structure like IF or SELECT CASE.