JCL&ibmt

30 Questions | Attempts: 173
Please wait...
Question 1 / 31
🏆 Rank #--
Score 0/100

1. A DD statement has 2 types of parameters. Name them ?

Submit
Please wait...
About This Quiz
JCL Quizzes & Trivia

2.

What first name or nickname would you like us to use?

You may optionally provide this to label your report, leaderboard, or certificate.

2. How can a job send a status message to a TSO user at the completion of a job ?

Submit

3. How is the record format of an output dataset specified?

Submit

4. What statement marks the end of an in-stream or Catalogued procedure ?

Submit

5. When space is allocated for an output dataset, what units can be used?

Submit

6. What is the function of JOB statement in JCL ?

Submit

7. What is the format of comment statement ?

Submit

8. How can a stopped job be started again? 

Submit

9. How can an in-stream dataset be terminated?

Submit

10. How can unused space allocation be returned to the system when a dataset is closed ?

Submit

11. What is the purpose of DD * statement in JCL?

Submit

12. When output dataset space is required, what quantity categories are used ?

Submit

13. What is Abend code S806 U0000?

Submit

14. What is the function of DD DISP parameter?

Submit

15. What is the prefix character for symbolic parameter ?

Submit

16. What parameter directs the output of the job log dataset ?

Submit

17. How can return codes be tested before execution of a job step?

Submit

18. When you are dealing with variable length data set ie if RECFM=V then what will be the value of LRECL parameter?

Submit

19. If both the JOBCAT & STEPCAT statements are coded in a step, which will be executed?

Submit

20. What is the function of the DD DCB keyword?

Submit

21. What is the maximum length of a single line of JCL dataset?

Submit

22. Sample Code                 //OUTFILE  DD  DSN=OUTFILE.TEST.DATA, //             DISP=(NEW,KEEP,DELETE), //             UNIT=SYSDA, //             SPACE=(TRK,(15,7),RLSE), //             DCB=(LRECL=120,BLKSIZE=1200,RECFM=FB)   What is the maximum amount of space that can be allocated when the above dataset is created?

Submit

23. How many extents are possible for a sequential file and vsam file ?

Submit

24. Which of the following will satisfy the below listed criteria, in GDG creation. Criteria:  - Limit is 255.  - all the dataset will be uncatalogged when it exceeds the limit.  - DSCB is not to be removed from the catalog.

Submit

25. What parameters can be used to limit the number of records written to a SYSOUT dataset ?

Submit

26. .  000100 //TCHN400# JOB A12,EXE1,NOTIFY=&SYSUID  000200 //PROC1    PROC  000300 //STEP1  EXEC PGM=IEFBR14  000400 //DD1 DD DSN=TCHN400.TEST.ABC,DISP=(MOD,CATLG,DELETE),  000500 //     SPACE=(TRK,(1,1)),DCB=(LRECL=80,BLKSIZE=800,RECFM=FB)  000510 //STEP2  EXEC PGM=IEFBR14  000520 //DD2 DD DSN=TCHN400.TEST.DEF,DISP=(MOD,CATLG,DELETE),  000530 //     SPACE=(TRK,(1,1)),DCB=(LRECL=80,BLKSIZE=800,RECFM=FB)  000600 //         PEND  000700 //STEPP1  EXEC PROC=PROC1,COND.STEP2=(4,GT)  000900 //   From The Above Code Consider That Step1 Is Successful (Step1 Rc Is Zero) If I Want To By Pass Step2 In Proc1 Then What  I  Should Code While Calling The Procedure

Submit

27. //TCHN400g JOB A12,EXE1,NOTIFY=&SYSUID,RESTART= ? //PRO1   PROC                                                //STEP1  EXEC PGM=IEFBR14                                    //DD1 DD DSN=TCHN400.ABC.PS1,DISP=(MOD,CATLG,DELETE),        //     SPACE=(TRK,(1,1)),DCB=(LRECL=80,BLKSIZE=800,RECFM=FB) //STEP2  EXEC PGM=IEFBR14                                    //DD2 DD DSN=TCHN400.ABC.PS2,DISP=(MOD,CATLG,DELETE),        //     SPACE=(TRK,(1,1)),DCB=(LRECL=80,BLKSIZE=800,RECFM=FB) //       PEND                                                //STEPP1 EXEC PRO1                                           //STEP3  EXEC PGM=IEFBR14                                    //DD3 DD DSN=*.STEPP1.STEP2.DD2,DISP=(MOD,CATLG,DELETE),     //     SPACE=(TRK,(1,1)),DCB=(LRECL=80,BLKSIZE=800,RECFM=FB) //                                            CONSIDER THE ABOVE JCL, INORDER TO RESTART JOB FROM 'STEP2' WHAT I SHOULD CODE IN RESTART PARAMETER ?

Submit

28. COND= (code, ge)   When will the statement execute.

Submit

29. Without regard of previous step whether it executes successful or not, I want to execute all the steps in JOB which of the following are valid?(select 3 options)

Submit

30. What is the function of the STEPLIB DD statement?

Submit
×
Saved
Thank you for your feedback!
View My Results
Cancel
  • All
    All (30)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
A DD statement has 2 types of parameters. Name them ?
How can a job send a status message to a TSO user at the completion of...
How is the record format of an output dataset specified?
What statement marks the end of an in-stream or Catalogued procedure ?
When space is allocated for an output dataset, what units can be used?
What is the function of JOB statement in JCL ?
What is the format of comment statement ?
How can a stopped job be started again? 
How can an in-stream dataset be terminated?
How can unused space allocation be returned to the system when a...
What is the purpose of DD * statement in JCL?
When output dataset space is required, what quantity categories are...
What is Abend code S806 U0000?
What is the function of DD DISP parameter?
What is the prefix character for symbolic parameter ?
What parameter directs the output of the job log dataset ?
How can return codes be tested before execution of a job step?
When you are dealing with variable length data set ie if RECFM=V then...
If both the JOBCAT & STEPCAT statements are coded in a step, which...
What is the function of the DD DCB keyword?
What is the maximum length of a single line of JCL dataset?
Sample Code...
How many extents are possible for a sequential file and vsam file ?
Which of the following will satisfy the below listed criteria, in GDG...
What parameters can be used to limit the number of records written to...
.  000100 //TCHN400# JOB A12,EXE1,NOTIFY=&SYSUID...
//TCHN400g JOB A12,EXE1,NOTIFY=&SYSUID,RESTART= ?...
COND= (code, ge)   When will the statement execute.
Without regard of previous step whether it executes successful or not,...
What is the function of the STEPLIB DD statement?
play-Mute sad happy unanswered_answer up-hover down-hover success oval cancel Check box square blue
Alert!