0

mainframe Online Quiz - 15

Description: mainframe Online Quiz - 15
Number of Questions: 20
Created by:
Tags: mainframe
Attempted 0/20 Correct 0 Score 0

what is the maximum number of characters can be used to name the variable in REXX

  1. 2

  2. 30

  3. 250

  4. 255

  5. 125


Correct Option: C

. Complete correctly: A REXX program (or REXX EXEC) called DEMO is stored in the partitioned dataset TBISUSR.REXXCRS.EXEC. Execution is possible...

  1. ... via the TSO command: EXEC 'TBISUSR.REXXCRS.EXEC(DEMO)' EXEC

  2. ...only after allocation of the partitioned dataset TBISUSR.REXXCRS.EXEC to the DD

  3. ... via the TSO command: CALL 'TBISUSR.REXXCRS.EXEC(DEMO)'

  4. ... only after compilation to COBOL, and via the TSO command


Correct Option: A

To receive input from the screen, we use the command:

  1. Read

  2. Pull

  3. Accept

  4. Receive


Correct Option: B

What is the result of TRUNC(12.3456,3)?

  1. 12.3

  2. 12.3000

  3. 12.346

  4. 12.345


Correct Option: D

To pass commands to a specific host environment (ex. TSO), which clause must be used?

  1. HOST TSO

  2. HSTADDRS TSO

  3. ADDRESS TSO

  4. EXEC TSO


Correct Option: C

REXX has extended tracing possibilities, even interactively. Which command activates the interactive trace?

  1. TRACE R

  2. TRACE ?R

  3. TRACE IR

  4. INTTRACE R


Correct Option: A

what is the maximum size of literal in REXX

  1. 8

  2. 30

  3. 250

  4. 251

  5. 125


Correct Option: D

which command is used to read and write files in REXX

  1. Read and write

  2. Execio

  3. Get and put

  4. Read next


Correct Option: B

Valid special characters

  1. #

  2. $

  3. -

  4. .

  5. None of the above


Correct Option: A,B,C,D

Which is a Special variables?

  1. Pull

  2. Say

  3. Parse

  4. Return


Correct Option: D

Parsing patterns in REXX.

  1. Matching string

  2. Positional

  3. Mixed

  4. None of the above


Correct Option: A,B,C

What is no prerequisite for using the EXECIO command?

  1. The dataset must be sequential or a member of a partitioned dataset.

  2. The dataset must be allocated to a file name or DD name.

  3. The dataset must be exclusively enqueued (DISP=OLD or NEW).

  4. TSO or MVS environment must be active.


Correct Option: C

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?

  1. PARSE PULL DAY MONTH YEAR

  2. PULL DATE PARSE VALUE DATE DAY MONTH YEAR

  3. PULL DATE PARSE VALUE DATE WITH DAY MONTH YEAR

  4. PULL DATE PARSE VAR DATE DAY MONTH YEAR


Correct Option: A

When a RETURN clause is used in a subroutine, a value can be passed back to the calling EXEC. Which statements are correct?

  1. This value is stored in the system variable RESULT.

  2. This value is stored in the system variable RC.

  3. This value can be alphanumeric.

  4. This value must be numeric.


Correct Option: A,C

What are the two types of interfaces provided by CICS to application programs?

  1. Command level

  2. Macro level

  3. Program level

  4. Transaction level


Correct Option: A,B

Will the user have interaction with CICS Applications.

  1. True

  2. False


Correct Option: A

Which is a unit of work scheduled by CICS?

  1. Transaction

  2. Task

  3. Terminal

  4. Program


Correct Option: B

What are the two types of direct access files supported by CICS?

  1. BDAM

  2. VSAM

  3. QSAM

  4. KSDS


Correct Option: A,B

Who Manages all the control tables to complete various application requests?

  1. CICS Manager

  2. CICS DBA

  3. CICS compiler

  4. None of the above


Correct Option: A

Which means the OS allows more than one task to run concurrently at the sametime ?

  1. Multi-threading

  2. Multi-tasking

  3. Psuedo Conversational

  4. Non-Psuedo Conversational


Correct Option: B
- Hide questions