mainframe Online Quiz - 15

mainframe Online Quiz - 15

20 Questions Published

Questions

Question 1 Multiple Choice (Single Answer)

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
Question 2 Multiple Choice (Single Answer)

. 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
Question 3 Multiple Choice (Single Answer)

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

  1. Read
  2. Pull
  3. Accept
  4. Receive
Question 4 Multiple Choice (Single Answer)

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

  1. 12.3
  2. 12.3000
  3. 12.346
  4. 12.345
Question 5 Multiple Choice (Single Answer)

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
Question 6 Multiple Choice (Single Answer)

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
Question 7 Multiple Choice (Single Answer)

what is the maximum size of literal in REXX

  1. 8
  2. 30
  3. 250
  4. 251
  5. 125
Question 8 Multiple Choice (Single Answer)

which command is used to read and write files in REXX

  1. Read and write
  2. Execio
  3. Get and put
  4. Read next
Question 9 Multiple Choice (Multiple Answers)

Valid special characters

  1. #
  2. $
  3. -
  4. .
  5. None of the above
Question 10 Multiple Choice (Single Answer)

Which is a Special variables?

  1. Pull
  2. Say
  3. Parse
  4. Return
Question 11 Multiple Choice (Multiple Answers)

Parsing patterns in REXX.

  1. Matching string
  2. Positional
  3. Mixed
  4. None of the above
Question 12 Multiple Choice (Single Answer)

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.
Question 13 Multiple Choice (Single Answer)

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
Question 14 Multiple Choice (Multiple Answers)

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.
Question 15 Multiple Choice (Multiple Answers)

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
Question 16 True/False

Will the user have interaction with CICS Applications.

  1. True
  2. False
Question 17 Multiple Choice (Single Answer)

Which is a unit of work scheduled by CICS?

  1. Transaction
  2. Task
  3. Terminal
  4. Program
Question 18 Multiple Choice (Multiple Answers)

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

  1. BDAM
  2. VSAM
  3. QSAM
  4. KSDS
Question 19 Multiple Choice (Single Answer)

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
Question 20 Multiple Choice (Single Answer)

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