How many types of parameters are used in JCL and what are
mandatory parameters of JOB statement.
Answer Posted / vaibhav
Two types of parameter used in JOB statement Positional
parameter and Keyword parameter.
Positional parameters are Job acconting information and
programmer name parameter.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What do you know about jcl?
Explain the function of the steplib dd statement?
What do we mean by 'Virtual storage' for a dataset and for a JOBSTEP ? What is the significance of the following statement for a programmer 'Virtual storage results in program addresses being independent of the addresses that actually exist in a computer' ?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
Why include statement is used in a jcl?
Differentiate between the joblib and the steplib statements?
How can an in-stream dataset be terminated?
what is use of dsn parameter in dd statement?
Explain the function of //jcllib statement?
Which dd parameters are required?
how can you check if a file is empty using jcl?
What is the function of dd name parameter with a 2 part structure; audit.report?
how to compare two datasets without using superce because output is limited to 133 bytes
What is the purpose of dd dummy statement?
Is acct parameter mandatory?