Which of the following equations are correct?
DISP=(,PASS) is equivalent to DISP=(NEW,PASS,KEEP)
DISP=(,,KEEP) is equivalent to DISP=(NEW,DELETE,KEEP)
DISP=(,,CATLG) is equivalent to DISP=(OLD,CATLG,CATLG)
DISP=(OLD,,) is equivalent to DISP=(OLD,KEEP,KEEP)
Indicate the correct answers about the OUTPUT statement?
Multiple OUTPUT statements can be coded for 1 single job step.
The OUTPUT statement can be used to control the authorisation of the submitting user,
The OUTPUT statement at job level must be coded before the JOB statement.
The OUTPUT statement can not override the MSGCLASS parameter on the JOB statement.
Which of the following DD statements to create a new data set is correctly written?
//DD1 DD DSN=TBISUSR.TU00001.DATA1,DISP=(NEW,KEEP),DSORG=PS,LRECL=80,
//DD2 DD DSN=TBISUSR.TU00001.DATA2(MBR1),DISP=(NEW,KEEP),DSORG=PO,
//DD3 DD DSN=TBISUSR.TU00001.DATA3(MBR2),DISP=(NEW,KEEP),DSORG=PO,
//DD4 DD DSN=TBISUSR.TU00001.DATA4,DISP=(NEW,KEEP),DSORG=PS,
Which parameter can not be used on a JOB statement?
MSGCLASS
COND
MGMTCLAS
NOTIFY
The following GDG datasets exist: TBISUSR.TU00001.GDG.G0003V00 TBISUSR.TU00001.GDG.G0004V00 TBISUSR.TU00001.GDG.G0005V00 TBISUSR.TU00001.GDG.G0006V00 TBISUSR.TU00001.GDG.G0007V00 Which statement will always create: TBISUSR.TU00001.GDG.G0008V00 ?
//DD1 DD DSN=TBISUSR.TU00001.GDG(+1),DISP=(NEW,CATLG),LRECL=80,
//DD1 DD DSN=TBISUSR.TU00001.GDG(+1),DISP=SHR
//DD1 DD DSN=TBISUSR.TU00001.GDG(8),DISP=(NEW,CATLG),LRECL=80,
//DD1 DD DSN=TBISUSR.TU00001.GDG(8),DISP=SHR
Which of the following conditional expressions can not be used with an IF-THEN-ELSE-ENDIF construction?
STEP.RC NE 8
ABEND = FALSE
STEP.CC = U4038
STEP.RUN EQ TRUE
Indicate the correct answers: A concatenation of datasets...
... can be used for input, to use both DD entries describing sequential datasets and DD
... can be used to write multiple output datasets.
... can contain a dummy data set in the input, which will indicate the end of the input.
... stored on different device types, can not be used for input.
When calling a procedure we can change - in different ways - this procedure. Which is the most complete statement?
We can override parameters on EXEC statements and add DD statements.
We can override, nullify and add parameters on all statements and add DD and/or OUTPUT
We can add and override parameters to all statements, but can only nullify parameters
We can nullify, override and add parameters to all statements, but can only add DD statements.
Which of the following inequality comparison operators can be used in predicates.
less than (
greater than (>)
less than or equal to (<=)
Any of the above.
Which sign is used to indicate any string of zero or more characters.
_
%
*
None of the above