mainframe Online Quiz - 38
Description: mainframe Online Quiz - 38 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: mainframe |
What is SMS
If * used with SYSOUT (SYSOUT=*) parameter, then where thw displays, JCL statements and messages will be printed.
If JCLLIB is not mentioned in the JCL, then in which library it will do a search?
which of the following statements cannot be coded within the procedure
The following portion of procedure division MOVE 0 TO A, I. PARA-1. ADD 3 TO A. ADD 2 TO I. IF I < a=" ‘,">B MOVE A TO C ELSE MOVE B TO C. ADD C TO D. Indicate which one of the following does not support the above statements
IF NOT AGE LESS THAN 30 AND 40 GO TO PARA-AGE-MIDDLES. The controls will go to the paragraph named PARA-AGE-MIDDLE.
Indicate which of the following is true about the 88 level entry.
IF A = 1 OR 2 OR 3 NEXT SENTENCE ELSE MOVE A TO B. Which of the following describes the above sentence correctly
IF A <> D GO TO P1 ELSE IF NOT (A > B OR B < a="6," b="7," c="5" d="8">
Determine the total number of bytes in the following. 01 REC-1. 02 FIRST-GROUP. 03 A1 PIC X(4). 03 A2 PIC 99. 02 REDEFINES FIRST-GROUP. 03 A3 PIC 999. 03 A4 PIC 999. 02 THIRD-GROUP. 03 A5 OCCURS 5 TIMES PIC 99.
Which of the following statements are incorrect.
Which of the following are directly controlled by JCL statements:
Which statements concerning the JCLLIB statement are true?
Complete correctly: When I want a jobstep to be executed only if the previous jobstep has a return code of strictly less than 8, I should add...
Consider the following: //TU00001T JOB ATUT000,TU00001,CLASS=7,MSGCLASS=X,TIME=(,10) //STEP1 EXEC PGM=PROGRAM1,TIME=(,6) //STEP2 EXEC PGM=PROGRAM2 //STEP3 EXEC PGM=PROGRAM3,TIME=(,15) Which of the following statements are true: