Multiple choice technology databases

How do you handle an Exception?

  1. Trap it with a Handler

  2. Propagate it to the Calling Environment

  3. A & Then B

  4. B & Then A

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

Exception handling involves first trapping the exception with a handler in the EXCEPTION block, then optionally propagating it to the calling environment if the handler cannot resolve it. This two-step approach (handle then propagate if needed) is the standard pattern.