Multiple choice technology web technology

STATEMENT LABELS can be used primarily for naming ... Choose all that apply

  1. Loop

  2. IF-THEN-ELSE-ENDIF construct

  3. Block

  4. Exception

Reveal answer Fill a bubble to check yourself
A,C Correct answer
Explanation

Statement labels in PL/SQL can name loops and blocks for control flow purposes like EXIT label_name or GOTO label_name. They cannot be used with IF-THEN-ELSE constructs or exception handlers directly - those structures use END IF and END exception_name instead.