mainframe Online Quiz - 14
Description: mainframe Online Quiz - 14 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: mainframe |
TCT stands for –
Program Control Program is associated with
In which Programs, application Will wait for user response instead of serving the other users in that Wait-time ?
EIB means
When a Task ends ,CICS releases all storage associated with the task ?
Which Transfers control to another program at the same level?
What are the two types of maps?
A group of Maps link-edited together is called a
DFHMDI macro is used to
What is the statement that should be used to stop the execution of COBOL program?
How many bytes will be used to store data internally for a variable defined as PIC S9(8)V99 Comp-3?
How many number of bytes will be utilized in the below group variable EMP-RECORD? 01 EMP-RECORD. 02 EMP-DATA1. 03 EMP-NAME PIC X(10). 03 EMP-SAL PIC 9(04). 02 EMP-DATA2 REDEFINES EMP-DATA1. 03 EMP-N1 PIC X(12). 03 EMP-N2 PIC 9(02). 02 EMP-DATA3. 03 EPT1 PIC X(02). 03 DEPT2 PIC X(02).
EVALUATE WS-INPUT WHEN 1 WHEN 2 DISPLAY ‘OPTION 2’ WHEN 3 DISPLAY ‘OPTION 3’ WHEN OTHER DISPLAY ‘OTHER’ END-EVALUATE What will be displayed when WS-INPUT is 1?
MAIN-PARA. MOVE 10 TO WS-CTR PERFORM PARA-1 WS-CTR TIMES END-PERFORM. PARA-1. MOVE 20 TO WS-CTR. How many times the PARA-1 will be performed when the above code is executed?
Can we redefine an existing X(100) field with a new field of X(200)?
What is the maximum length that can be defined for a Numeric field?
02 A PIC 9(5) VALUE 1234. 02 B PIC ZZ999. In Procedure Divison, MOVE A TO B DISPLAY B. What will be displayed with above display statement?
SET A TO B. Which one of the following is correct, after execution of above statement?
In Working Storage section, 02 A PIC 9 VALUE 2. 02 B REDEFINES A PIC 9. 02 C REDEFINES A PIC 9. Following statement is present in Procedure Division. Compute A = B + C What will be the values in A, B and C after executing the above statement?
DISPLAY 'This is COBOL Test' The above statement is coded in a COBOL program. Where will the text be displayed, when this program is executed?