Multiple choice technology web technology

Some parameters have sub-parameters. These can be both positional or keyword sub-parameters.Suppose TU00001 is the programmer’s name, ATUT000 is the programmer's accountnumber and it is a default value. Given this information, which statements are correct?

  1. //TU00001T JOB (ATUT000,,,,,,,,),TU00001,CLASS=7,MSGCLASS=X

  2. //TU00001T JOB (ATUT000),’TU00001’,CLASS=7,MSGCLASS=X

  3. //TU00001T JOB TU00001,’(ATUT000)’,CLASS=7,MSGCLASS=X

  4. //TU00001T JOB ,(ATUT000),CLASS=7,MSGCLASS=X

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

JCL JOB statement positional parameters follow strict order: accounting information (in parentheses), then programmer name. Option A correctly places accounting info (ATUT000) in positional form followed by the programmer name (TU00001). Option B is equivalent with quoted parameters. Options C and D are incorrect because they reverse the positional order or use improper syntax.