Which one of the following is a valid job name?
-
//TEST*1
-
// JOB13
-
//$ABCD
-
//STEPSEVEN
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.