Multiple choice technology testing

The method used to continue the test execution after getting run-time error is

  1. On Error Resume Next

  2. On Error Raise Next

  3. On Error Next

  4. none of the above

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

On Error Resume Next is the VBScript statement used to continue test execution after encountering a runtime error, preventing the test from halting. The other options are not valid VBScript error handling statements.