Multiple choice technology mainframe

Which one of the following is a valid job name?

  1. //TEST*1

  2. // JOB13

  3. //$ABCD
  4. //STEPSEVEN

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

In JCL (Job Control Language), job names must start with // and be followed by 1-8 alphanumeric characters. Option C (//$ABCD) is valid because it begins with // and contains only valid characters. The asterisk (*) in A is invalid, JOB13 in B has an invalid character sequence, and STEPSEVEN in D exceeds 8 characters.