Multiple choice

For an unconditional approach to a particular part of a complex PL/SQL block, which of the following control structures can be used?

  1. a

  2. If-Then-Else

  3. While loop

  4. GoTo

  5. Decode

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

If-Then-Else is a conditional control structure in PL/SQL that allows unconditional approach to different parts of code based on condition evaluation. The IF statement evaluates a condition and executes different code blocks accordingly, providing structured decision-making capability.