Multiple choice technology programming languages

which one of the following is a scope terminator?

  1. end-evaluate

  2. exit

  3. continue

  4. None of the above

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

END-EVALUATE is a scope terminator that explicitly marks the end of an EVALUATE statement block in COBOL. Scope terminators like END-IF, END-PERFORM, and END-EVALUATE improve code readability and prevent ambiguity. EXIT is a statement that exits a program or paragraph, while CONTINUE is a no-op statement.