Answer Posted / vinay sonar
No,the job will get abend and you will get JCL ERROR
as 'JOB HAS NO STEPS'
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is NOTCAT ?
Brief description of inline procedure of jcl.
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
What is the function of job statement in jcl?
Explain the purpose of dd dummy statement?
List in order the hierarchical levels of jcl?
which parameter is use to declare the name of dataset in dd statement?
How to pass data to a program that is coded in an exec 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?
Is condition checking possible in jcl? If yes, how?
what operation is performed by job statement?
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?
what are the statements that are not valid to be included in an include statement?