Answer Posted / richards
No.. A JCL is needed is submit a Cobol Batch program..
| Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
in ways data can be passed to a COBOL program from JCL?
What methodology can be adapted to transfer data to a program that is coded using the exec statement?
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
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
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
Explain the function of //jcllib statement?
In job processing, what happens in conversion stage?
Must tape dataset definitions include vol=ser specifications?
Explain how can return codes be tested before execution of a job step?
Can an individual step be restricted from using all the jobs allowed cpu time?
What are the jcl procedures?
what is SOC4 error?
What is the function of the steplib dd statement?
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
How jcl work to handle various input output file operations?