Multiple choice technology programming languages

Which one denotes the end of the JOB?

  1. //

  2. //*

  3. /*

  4. END

  5. NONE

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

In JCL (Job Control Language) for mainframe systems, the // (two slashes) notation marks the beginning of a job step. When // appears in column 1-2 without other parameters, it signifies the end of the current JOB. The /* comment marker (option C) is used for JCL comments, not job termination. END is not a valid JCL statement for job termination.