Questions
What is the function of the DD DCB keyword
- Begins the subparameters of the DCB
- Begins the DASD control block
- Marks the close of the DCB
- Modifies the record type parameters
Concerning the shielding of variables of an internal subroutine from the main EXEC part, which of the following is correct:
- One can not shield variables in a subroutine from the main EXEC, only from other subroutines.
- One can shield the variables by using the clause: CALL SUBROUT1 PROCEDURE
- One can shield the variables by defining the start clause of a subroutine:SUBROUT1: PROCEDURE
- One can shield the variables by defining the start clause of a subroutine: SUBROUT1: SHIELDED
What is the maximum length of a single line of JCL
- 71 bytes
- 60 bytes
- 55 bytes
- 80 bytes
What is the purpose of DD DUMMY statement
- Marks a deleted DD statement
- Begins an interpreted command stream
- Specifies no space allocation & no disposition processing
- Suppress command processing
When a RETURN clause is used in a subroutine, a value can be passed back to the calling EXEC. Which statements are correct?
- This value must be numeric.
- This value can be alphanumeric.
- This value is stored in the system variable RC.
- This value is stored in the system variable RCODE.
Many JCL statements contain specific values designed to direct & control theexecution of the statement. What are these fields called
- Linkage Variables
- Parameters
- Control Libraries
- Includes
If I want to fill the variable DAY with '01', the variable MONTH with 'January' and the variable YEAR with '2009', which would be a correct way to do so, if the data '01 January 2009' is read from the input screen?
- PARSE PULL DAY MONTH YEAR
- PULL DATE followed by PARSE VALUE DATE DAY MONTH YEAR
- PULL DATE followed by PARSE VALUE DATE WITH DAY MONTH YEAR
- PULL DATE followed by PARSE VAR DATE DAY MONTH YEAR
To pass commands to a specific host environment (ex. TSO), which clause must be used?
- HOST TSO
- HSTADDRS TSO
- ADDRESS TSO
- EXEC TSO
REXX has extended tracing possibilities, even interactively. Which command activates the interactive trace?
- TRACE R
- TRACE ?R
- TRACE IR
- INTTRACE R
What is no prerequisite for using the EXECIO command?
- The dataset must be sequential or a member of a partitioned dataset.
- The dataset must be allocated to a file name or DD name.
- The dataset must be exclusively enqueued (DISP=OLD or NEW).
- TSO or MVS environment must be active.
Which of the following belongs to JES2
- XMIT
- XEQ
- ROUTEXEQ
- OPERATOR
Improper handling of which parameter leads to abend S322
- CLASS
- TIME
- REGION
- JOB
How many DD statements can be allocated to a single job step?
- 255
- 16
- 1635
- None of the above
Which of the following is not used with LINES parameter
- DUMP
- CANCEL
- ABEND
- WARNING
Which parameter is used to copy the attributes and allocation information for a new data set from an existing data set?
- LIKE
- COPY
- COPIES
- All of the above
What is/are valid Syntax(s) of paramtere EXPDT
- EXPDT=yyddd
- EXPDT=yy/ddd
- EXPDT=yyyyddd
- EXPDT=yyyy/ddd
How do you write the expiration date of February 2, 1996 for a dataset
- EXPDT=1996033
- EXPDT=1996/0202
- EXPDT=1996/033
- EXPDT=033/1996
Which value of parameter RD indicates that automatic and deferred restart in any form can't happen
- R
- NC
- RNC
- NR
Which value of parameter RD indicates that automatic and deferred restart in any form can't happen
- RNC
- R
- NC
- NR
Which statement(s) is/are correct for LRECL
- LRECL = 0 can be valid when RECFM = F
- LRECL=nnnnnK syntax can be valid
- LRECL can not be used with VSAM Files
- LRECL must not exceed BLKSIZE minus 4 when RECFM=VS