Multiple choice technology programming languages

Which of the following way of handling exceptions is provided by Vb.Net?

  1. Structured Exception Handling

  2. Unstructured Exception Handling

  3. Both A and B

  4. None of the Above

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

VB.NET supports both structured exception handling (Try...Catch...Finally blocks) and unstructured exception handling (On Error GoTo statements) for backward compatibility with VB6. This dual approach allows developers to choose modern error handling or legacy-style error management.