Mainframe JCL, REXX, and CICS Programming

Test your knowledge of mainframe technologies including JCL (Job Control Language), REXX programming, and CICS (Customer Information Control System) transaction processing.

20 Questions Published

Questions

Question 1 Multiple Choice (Single Answer)

CICS Queue that can be used for Automatic Transaction Initiation?

  1. Extra Partition Transient Data Queue (TDQ)
  2. Intra Partition Transient Data Queue (TDQ)
  3. Temporary Storage Queue (TSQ)
  4. All of the above
Question 2 Multiple Choice (Single Answer)

CICS Transaction used to define CICS resources online (RDO - Resource Definition Online)?

  1. CEMT
  2. CEDA
  3. CECI
  4. CEDF
Question 3 Multiple Choice (Single Answer)

Compiler parameter that is must for a CICS program?

  1. RES
  2. SSRANGE
  3. FLAGSAA
  4. RENT
Question 4 Multiple Choice (Single Answer)

CICS transaction used to browse TSQ & TDQ?

  1. CECI
  2. CEDA
  3. CEMT
  4. CEBR
Question 5 Multiple Choice (Single Answer)

CICS Control table to register the applicatin PLAN?

  1. PCT
  2. DCT
  3. TCT
  4. RCT
Question 6 True/False

CICS Supports both static and dynamic calls TRUE or FALSE?

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

CICS Transaction used to test BMS MAPs without writing a COBOL program?

  1. CEDF
  2. CEMT
  3. CECI
  4. CEDA
Question 8 True/False

CICS Supports both QSAM & VSAM datasets

  1. True
  2. False
Question 9 True/False

EXEC CICS LINK & COBOL CALL statements function alike TRUE or FALSE?

  1. True
  2. False
Question 10 True/False

CICS RETURN command will always pass control back to the calling program TRUE or FALSE?

  1. True
  2. False
Question 11 True/False

CEDF allows interruptions at COBOL statements?

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

CICS Command to suspend previously issued START command?

  1. EXEC CICS UNLOCK
  2. EXEC CICS CANCEL
  3. EXEC CICS IGNORE
  4. EXEC CICS RETRIEVE
Question 13 Multiple Choice (Single Answer)

which function returns the position of a word?

  1. word()
  2. wordindex()
  3. wordnumber
  4. wordno()
Question 14 Multiple Choice (Single Answer)

which function is used to clear leading or trailing spaces or infact any other characters?

  1. Strip()
  2. trun()
  3. remove()
  4. space()
Question 15 Multiple Choice (Single Answer)

Which function is used to convert lower case characters to upper case characters?

  1. uppercase()
  2. upcase()
  3. Translate()
  4. tran()
Question 16 Multiple Choice (Single Answer)

which function will provide the following output? mindworks mindworks mindworks

  1. mult('mindworks ',3)
  2. repeat('mindworks ',3)
  3. copy('mindworks ',3)
  4. copies('mindworks ',3)
Question 17 Multiple Choice (Single Answer)

Which of the following will produce the following output? '02 Nov 1997'

  1. DATE('W')
  2. DATE('E')
  3. DATE('N')
  4. DATE('D')
Question 18 Multiple Choice (Single Answer)

What is the unit of work in JCL?

  1. Dataset
  2. Program
  3. Job
  4. Procedure
Question 19 Multiple Choice (Single Answer)

Provide the Correct Sequence of JCL statements.

  1. JOB, EXEC, DD
  2. DD,JOB, EXEC
  3. JOB, DD, EXEC
  4. EXEC, JOB ,DD
Question 20 Multiple Choice (Single Answer)

What is the use of JOB CARD?

  1. To initiate the EXEC statement
  2. To identify job and tell MVS about the type an priority of Job.
  3. Strictly for identifying the job.
  4. None of the above.