Answer Posted / mohi
How to find JES installed in our system.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain how can an in-stream dataset be terminated?
What do you understand by the term job time – out and how can you overcome that?
What happens if both JOBLIB & STEPLIB is specified ?
How to pass data to a program that is coded in an exec statement?
Explain about ISPF/TSO Commands
What are some jcl statements that are not allowed in procedures?
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' ?
How to submit jcl through a cobol program?
List in order the hierarchical levels of jcl?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
How to run cobol program using jcl?
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The disp in the JCL is SHR and the pgm opens the file in EXTEND mode. What happens ?
Are there any set of rules for the names of the steps used in a job?
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
Is condition checking possible in jcl?