Multiple choice technology programming languages

Which one of the following terminates the request and returns you to command level

  1. STOP

  2. END

  3. END NORUN

  4. CANCEL

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

END NORUN terminates the current request and returns control to the command level without executing any further statements. This is different from END which just ends the current block, and CANCEL which aborts the current operation.