Answer Posted / vikaschandra
No it's totally wrong, User will get Abend S322. Job will not execute.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
How to pass data to a program that is coded in an exec statement?
What is the function of dd name parameter with a 2 part structure; audit.report?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
What is the use of symbol // in jcl?
Explain the purpose of dd * statement in jcl?
Explain dfsort utility?
Explain the hierarchy levels in jcl?
Where can program checkpoints be stored for use in a restart?
Define concatenating?
Explain the function of the steplib dd statement?
Why include statement is used in a jcl?
How to code these statements in JCL: CLEANUP INITIAL(NO) RESTART(NO) DYNALLOC(NO) job definition..?
What statement can be used to send data to another mvs jes3 node?
what is the purpose of coding class parameter in job 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