Multiple choice technology testing

How do we use continue on error option ?

  1. lr_continue_on_error (0) for start and lr_continue_on_error (1) to end

  2. lr_continue_on_error (1) for start and lr_continue_on_error (0) to end

  3. lr_continue_on_error (1) for start and lr_continue_on_error (1) to end

  4. lr_continue_on_error (0) for start and lr_continue_on_error (0) to end

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

lr_continue_on_error(0) starts the continue-on-error mode, allowing the script to run even if errors occur. lr_continue_on_error(1) ends the continue-on-error mode and returns to default error handling. Option A correctly shows 0 for start and 1 for end. Using 0 for both would leave it enabled indefinitely.