Top 42 Jcl Interview Questions You Must Prepare 27.Jul.2024

Q1. What Is The Purpose Of Coding Class Parameter In Job Statement?

Based on the time duration and the number of resources required by the job, companies assign different job classes. These can be visualized as individual schedulers used by the OS to receive the jobs. Placing the jobs in the right scheduler will aid in easy execution of the jobs. Some companies have different classes for jobs in test and production environment. Valid values for CLASS parameter are A to Z characters and 0 to 9 numeric (of length 1). Following is the syntax − CLASS=0 to 9 | A to Z

Q2. In Order To Execute Step2 A Job After A Return Code Of 8 In Step1, What Condition You Will Code In Step2?

COND=(12,LT,STEP1), it will read the condition as 12 less than 8, which is false, so this step will be executed.

Q3. What Is Use Of Dcb Parameter In Dd Statement?

The Data Control Block (DCB) parameter details the physical characteristics of a dataset. This parameter is required for datasets that are newly created in the job step. LRECL is the length of each record held within the dataset. RECFM is the record format of the dataset.

Q4. Which Parameter Is Used To Check The Syntax Of A Jcl Without Executing It?

TYPRUN = SCAN checks the syntax errors of the JCL without executing it.

Q5. How Can The Same Proc Be Re-used And Called By Many Jobs?

The varying portion of the JCL can be specified using symbolic parameters in the JOB and the static parts can be specified in the PROC. For example, if the file name changes for every JOB that uses the PROC, then the varying portion of the file name can be coded in JCL using symbolic parameter.

//IN1 DD DSN = &ID.URMI.IN1, DISP = SHR  //*Coded in PROCID=MYDATA1 is coded in JOB1, ID = MYDATA2 is coded in JOB2 and so on.

Q6. How You Will The Direct The Data To Spool Using Sysout Option?

Code SYSOUT = *, then the data will be directed to spool.

Q7. Which Utility Is Used A Dummy Utility?

IEFBR14 is no operation utility. Used to return control to user and terminate. It is usually used to create empty dataset or delete an existing dataset.

Q8. How Can You Check If A File Is Empty Using Jcl?

When the file is used as input in IDCAMS, job completes with a warning (return code 4) if the file is empty.

Q9. How Can A Gdg Base Be Created In A Jcl. What Is The Difference Between Empty And Scratch Parameter While Defining/altering Gdg Base?

GDG base can be created using IDCAMS utility. EMPTY uncataloges all the generations when the LIMIT is reached. SCRATCH physically deletes the generation, when it is uncataloged. (LIMIT specifies the maximum number of versions that the GDG base can hold).

Q10. What Is Use Of Disp Parameter In Dd Statement?

The DISP parameter is used to describe the status of the dataset, disposition at the end of the job step on normal and abnormal completion. DISP is not required in a DD statement only when the dataset gets created and deleted in the same job step (like the temporary datasets). Syntax − DISP = (status, normal-disposition, abnormal-disposition)

Q11. How To Do Automated Restart When A Job Abends?

Using RD parameter in JOB/EXEC statement. The abend codes for which RESTART need to be performed can be mentioned in the SCHEDxx member of the IBM system parmlib library.

Q12. In Job Processing, What Happens In Conversion Stage?

The JCL along with the PROC is converted into an interpreted text to be understood by JES and stored into a dataset, which we call as SPOOL.

Q13. What Is Use Of Space Parameter In Dd Statement?

The SPACE parameter specifies the space required for the dataset in the DASD (Direct Access Storage Disk).
Syntax − SPACE = (spcunits, (pri, sec, dir), RLSE)

Q14. What Are The Various Stages Of Job Processing?

Input −> Conversion −> Execution −> Output −> Hard copy −> Purge

Q15. What Are The Ways Of Passing Data To A Cobol Program From Jcl?

Data can be passed to a COBOL program through files, PARM parameter and SYSIN DD statement.

Q16. What Disp Parameter We Mention For Creation Of Temporary Dataset So That We Can Use It In Later Steps?

DISP = (NEW,PASS). PASS is valid only for normal disposition. This is used when the dataset is to be passed and processed by the next job step in a JCL.

Q17. What Is Use Of Dsn Parameter In Dd Statement?

The DSN parameter refers to the physical dataset name of a newly created or existing dataset. The DSN value can be made up of sub-names each of 1 to 8 characters length, separated by periods and of total length of 44 characters (alphanumeric).

Q18. What Operation Is Performed By Job Statement?

Specifies the information required for SPOOLing of the job such as job id, priority of execution, user-id to be notified upon completion of the job.

Q19. In Job Processing, What Happens In Execution Stage?

When the job reaches its highest priority, it is taken up for execution from the job queue. The JCL is read from the SPOOL, the program is executed and the output is redirected to the corresponding output destination as specified in the JCL.

Q20. How You Will Define A Temporary Dataset In Jcl?

A temporary dataset is the one that is created and deleted within a job and is declared as DSN=&&TEMP. Do not mention the DSN parameters with this.

Q21. A Chkpt Is The Parameter Coded For Multi-volume Qsam Datasets In A Dd Statement. When A Chkpt Is Coded As Chkpt=eov, A Checkpoint Is Written To The Dataset Specified In The Sysckeov Statement At The E

This statement is true.

Q22. A Jcl Has 2 Steps. How To Code The Jcl Such That If Step1 Abends, Then Step2 Runs. Else, Job Terminates With Step1?

Code COND = ONLY in STEP2.

Q23. How Do You Access An Uncataloged Dataset In A Jcl?

By using the UNIT and VOL serial parameters in the dataset DD statement.

Q24. Which Utility Is Used To Run A Cobol-db2 Program?

IKJEFT01 utility is used to run a COBOL-DB2 program.

Q25. In A Jcl, A Large Volume Dataset Is Loaded To A Table Using Bmcload In Step1 And An Image Copy Of The Loaded Table Is Taken Using Bmccopy In Step

The SPACE parameter of the image copy dataset can be increased based on the volume of the table and the job can be restarted from step2.

Q26. What Is A Jcl?

JCL stands for Job Control Language which provides the specifications necessary to process a job. It is a set of control statements which provides the specifications necessary to process a job. It is a interface between programs & MVS operating system.

Q27. A Set Statement Is Used To Define Commonly Used Symbolic Across Job Steps Or Procedures. It Initializes The Previous Values In The Symbolic Names. It Has To Be Defined Before The First Use Of The Symb

This statement is true.

Q28. Which Utility Is Used To Sort A File In Jcl?

SORT utility is used to sort a file in a particular order based on the sort card.

Q29. What Does Mvs Stand For?

MVS stands for Multiple Virtual storage which is the operating system for the IBM mainframe systems.

Q30. When Does A Dataset Go Uncataloged?

When it is defined with DISP = (NEW,KEEP) at the time of creation. In case of a GDG, least recent generation is uncataloged if the GDG base had been defined with NOEMPTY parameter when the LIMIT is reached. All generations are uncataloged when coded with EMPTY.

Q31. If The Submitter Of A Job Wants To Inform Another User About The Job Completion, How Can It Be Done?

NOTIFY = userid of the person (not the submitter) can be specified in the JOB statement so that the user gets a notification with the return code upon job completion. But the job log is present in the spool under the submitter's userid only.

Q32. Where & How Do You Code Identifier In Jcl?

Identifiers are two slashes (//) starting from column number @All JCL statements starts with identifiers except for two exceptions - For a delimiter statement, /* starting in col 1 and for a comment statement , //* starting at col 1.

Q33. What Sort Card You Will Use To Copy The Data From One Dataset To Another Dataset?

In the SORT step mention the SYSIN & SYSOUT dataset name & in sort card code SORT FIELDS=COPY to copy data from input file to output file.

Q34. What Is The Purpose Of Coding Notify Parameter In Job Statement?

The system sends the success or failure message (Maximum Condition Code) to the user specified in this parameter. Syntax − NOTIFY = "userid | &SYSUID"

Q35. Which Statement Is Used To End The In-stream Procedure In A Jcl?

PEND statement is used to end the in-stream procedure.

Q36. If We Want To Use A Gdg Which Is Already Created By Some Job, Then How To Use The Reference Of The Last Generation In A Jcl?

To refer the latest generation of a GDG, we use the reference as (+0).

Q37. How Do You Create A Dataset In A Jcl With The Same File Organisation As That Of Another Existing Dataset?

Use IEBGENER and pass existing file in SYSUT@Pass new file in SYSUT2 and mention DCB=*.SYSUT1 to get the same DCB as that of SYSUT1 dataset.

Q38. What Are The Statements That Are Not Valid To Be Included In An Include Statement?

Dummy DD statements, data card specifications, PROCs, JOB, PROC statements cannot be coded within an INCLUDE member. An INLCUDE statement can be coded within an INCLUDE member and further nesting can be done up to 15 levels.

Q39. When Can A Job Time-out Occur? How To Overcome That?

A job time-out error can occur when the program takes more time than the time limit for the specified class. This is called a S322 abend. This error is encountered when there are some looping errors in the program and it does not reach completion.
If the data processed in the program is genuinely huge and needs more time than the class limit, then the TIME parameter can be coded as TIME = 1440 to get infinite time until job completion.

Q40. Which Parameter Is Use To Declare The Name Of Dataset In Dd Statement?

DSN(Dataset Name) is used to declare the name of dataset in a DD statement.

Q41. Which Utility Is Used To Update Pds?

IEBUPDTE is used to update PDS.

Q42. How Do You Code A Null Statement?

JCL is terminated by a null statement which is optional. For a null statement code only // starting from column @All the lines after this will not be executed.