mainframe Online Quiz - 117
Description: mainframe Online Quiz - 117 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: mainframe |
Can I specify dummy VSAM dataset with AMP = 'AMORG' in a JCL?
DEFINE PATH command creates an alias for
DEFINE ALIAS command creates an alias for
How should be VSAM file defined in order that it can be accessed both in CICS and in BATCH environment?
How can submitting user's RACF authority be overridden in a job stream?
Many JCL statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
Can an individual step be restricted from using all the job's allowed CPU time?
What is the maximum length of a single line of JCL?
What is the purpose of DD DUMMY statement?
I am using internal sort in my cobol program . Is there any way to test the return code of operation???
What will happen if I change the below code MOVE ZERO TO TOTAL . PERFORM VARYING I FROM 1 BY 1 UNTIL I > 100 COMPUTE TOTAL = TOTAL + ITEM(i) * DISCOUNT END-PERFORM to the follwing code MOVE ZERO TO TOTAL PERFORM VARYING I FROM 1 BY 1 UNTIL I > 100 COMPUTE TOTAL = TOTAL + ITEM(i) END-PERFORM COMPUTE TOTAL = TOTAL * DISCOUNT
If you are accessing ESDS VSAM file , then in cobol if you don't prefix the ddname with 'AS-' Then which abend might occur when attempting to open a dataset??
MERGE statement can have
For KSDS or RRDS ,when DELETE statement is used the file must be opened in
When we use INTIALIZE verb to intialize group verbs,group elements which are FILLERs will not be intialized
which command cerates an alias for the VSAM base cluster
IDCAMS utility can't be executed without 2 dd statement which are they??
SEARCH ALL statement only test an equal condition
MOVE ZEROS TO TOTAL-OUT, TOTAL-OUT may have an __________ picture clause.
WS-TAX-IN PIC 9(4) VALUE '1234'. WS-TAX-OUT PIC 9(3). MOVE WS-TAX-IN TO WS-TAX-OUT. What is the value WS-TAX-OUT contain?