Answer Posted / venkateswarlu
In cobol we define a file by using 'SELECT' statement.
In jcl we define it by using 'DD' statement.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
How would you understand error(execution phase)?
For what purpose steplib and joblib are used ?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
How does the jcl specify the job to os?
Is acct parameter mandatory?
What is the function of job statement in jcl?
What is the function of the dd dcb keyword?
what is use of disp parameter in dd statement?
Where & How Do You Code Identifier In Jcl?
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' ?
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
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?
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?
Is it possible to code instream data in a PROC?