mainframe Online Quiz - 73
Description: mainframe Online Quiz - 73 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: mainframe |
If a field is defined as Pic s9(6)v99 comp-3, it uses 5 bytes of storage
//MYJOB JOB(E343),'ABCDEFGH' //JOBLIB DD DSN=ABCD.PROD.LOADLIB,DISP=SHR //STEP1 EXEC PGM=PROG //STEPLIB DD DSN=ABCD.PPROD.LOADLIB,DISP=SHR //STEP2 EXEC PGM=PROG1 //STEPLIB DD DSN=ABCD.TEST.LOADLIB,DISP=SHR ..... ..... In the above code, from which library the loadmodule of PROG1 is executed
Which is true?
When we specify V for RECFM parameter, what should we mention for the value of LRECL parameter
Maximum number of sequential datasets that can be concatenated
COBOL statements should start in a fresh line
which code snippet can be used to iterate an instruction for 6 times? Note: indicates new line
Which of the following variable names for data items are not syntactically correct?
Take a look at the following variable declarations. What will be the content of RESULT at the end of the series of MOVE instructions? 01 ELE-1 PIC X(5) VALUE 'ELRI'. 01 ELE-2 PIC X(10). 01 ELE-3 PIC X(2). 01 RES PIC X(5). MOVE 'TABLE' TO RES MOVE ELE-1 TO ELE-2 MOVE ELE-2 TO ELE-3 MOVE ELE-3 TO RES