What will happen if we write two STOP RUN's in a COBOL
program?
Answer Posted / harish
ONLY ONE WILL EXCUTE, THAT IS THE FIRST ONE
| Is This Answer Correct ? | 33 Yes | 1 No |
Post New Answer View All Answers
How dummy is used in jcl?
How can the disposition of sysout datasets be set for an entire jobstream?
What is Cataloged Procedures?
Explain the function of job statement in jcl?
if we want to use a gdg which is already created by some job, then how to use the reference of the last generation in a jcl?
Can we use DISP=SHR in output file in JCL
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
how to compare two datasets without using superce because output is limited to 133 bytes
what is the difference between JES3 and JES2?
Give the syntax of job specifying jcl statement.
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
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
I have mainpgm(abc) this is the only cobol pgm(non-db2).And this pgm calling subpgm name "acd" this also only cobol(non- Db)and this pgm calling some other subpgm this pgm has cobol-db2 pgm. 1) IF you calling static mode how to run and how to compile? 2) IF you calling dynamic mode how to run and how to compile? plz suggestion me.
which utility is used to sort a file in jcl?
What is use of restart and how to use it?