Multiple choice technology programming languages

If CHECK statement is outside the loop structure and if the condition fails?

  1. Subsequent statements in the current processing blocks are executed

  2. There is an error message

  3. Program gets terminated

  4. Subsequent statements in the current processing blocks are not executed

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

When a CHECK statement condition fails outside a loop structure, the current processing block terminates and subsequent statements in that block are not executed. This is standard control flow behavior - a failed check stops execution of the current code block.