JCL is a job control language used for multiple virtual storages and it is generally used in the operating system of IBM mainframe computers. Every Mainframe job seeker must be having a sound knowledge on this JCL to get placed in the top companies like IBM, Accenture, TCS and many. Here is a guidance offered to you through JCL interview questions and answers on the job portal wisdom jobs.com. These job interview questions and answers not only cover the questions related to the basic knowledge on the JCL subject but also go little deeper giving you the expert guidance on the same. Higher your answer rate, higher are the chances of the placement, the guide of questions here helps you build that expert knowledge.
Answer :
This statement is true.
Question 2. What Is Use Of Space Parameter In Dd Statement?
Answer :
The SPACE parameter specifies the space required for the dataset in the DASD (Direct Access Storage Disk).
Syntax − SPACE = (spcunits, (pri, sec, dir), RLSE)
Question 3. Which Utility Is Used To Update Pds?
Answer :
IEBUPDTE is used to update PDS.
Question 4. Which Utility Is Used To Sort A File In Jcl?
Answer :
SORT utility is used to sort a file in a particular order based on the sort card.
Answer :
This statement is true.
Question 6. What Sort Card You Will Use To Copy The Data From One Dataset To Another Dataset?
Answer :
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.
Answer :
COND=(12,LT,STEP1), it will read the condition as 12 less than 8, which is false, so this step will be executed.
Answer :
To refer the latest generation of a GDG, we use the reference as (+0).
Question 9. Which Statement Is Used To End The In-stream Procedure In A Jcl?
Answer :
PEND statement is used to end the in-stream procedure.
Question 10. Which Parameter Is Use To Declare The Name Of Dataset In Dd Statement?
Answer :
DSN(Dataset Name) is used to declare the name of dataset in a DD statement.
Question 11. Which Utility Is Used To Run A Cobol-db2 Program?
Answer :
IKJEFT01 utility is used to run a COBOL-DB2 program.
Answer :
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.
Question 13. Which Utility Is Used A Dummy Utility?
Answer :
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.
Question 14. How You Will The Direct The Data To Spool Using Sysout Option?
Answer :
Code SYSOUT = *, then the data will be directed to spool.
Question 15. How You Will Define A Temporary Dataset In Jcl?
Answer :
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.
Question 16. What Is Use Of Dcb Parameter In Dd Statement?
Answer :
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.
Question 17. What Is Use Of Disp Parameter In Dd Statement?
Answer :
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)
Question 18. What Is Use Of Dsn Parameter In Dd Statement?
Answer :
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).
Question 19. Which Parameter Is Used To Check The Syntax Of A Jcl Without Executing It?
Answer :
TYPRUN = SCAN checks the syntax errors of the JCL without executing it.
Question 20. What Is The Purpose Of Coding Notify Parameter In Job Statement?
Answer :
The system sends the success or failure message (Maximum Condition Code) to the user specified in this parameter. Syntax − NOTIFY = "userid | &SYSUID"
Question 21. What Is The Purpose Of Coding Class Parameter In Job Statement?
Answer :
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
Question 22. How Do You Code A Null Statement?
Answer :
JCL is terminated by a null statement which is optional. For a null statement code only // starting from column 1. All the lines after this will not be executed.
Question 23. What Operation Is Performed By Job Statement?
Answer :
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.
Question 24. In Job Processing, What Happens In Execution Stage?
Answer :
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.
Question 25. In Job Processing, What Happens In Conversion Stage?
Answer :
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.
Question 26. What Are The Various Stages Of Job Processing?
Answer :
Input −> Conversion −> Execution −> Output −> Hard copy −> Purge
Question 27. Where & How Do You Code Identifier In Jcl?
Answer :
Identifiers are two slashes (//) starting from column number 1. 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.
Question 28. What Does Mvs Stand For?
Answer :
MVS stands for Multiple Virtual storage which is the operating system for the IBM mainframe systems.
Answer :
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.
Answer :
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.
Answer :
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.
Question 32. When Can A Job Time-out Occur? How To Overcome That?
Answer :
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.
Answer :
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).
Question 34. When Does A Dataset Go Uncataloged?
Answer :
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.
Question 35. How To Do Automated Restart When A Job Abends?
Answer :
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.
Answer :
Code COND = ONLY in STEP2.
Question 37. What Are The Statements That Are Not Valid To Be Included In An Include Statement?
Answer :
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.
Question 38. How Do You Access An Uncataloged Dataset In A Jcl?
Answer :
By using the UNIT and VOL serial parameters in the dataset DD statement.
Answer :
Use IEBGENER and pass existing file in SYSUT1. Pass new file in SYSUT2 and mention DCB=*.SYSUT1 to get the same DCB as that of SYSUT1 dataset.
Question 40. How Can The Same Proc Be Re-used And Called By Many Jobs?
Answer :
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.
Question 41. What Are The Ways Of Passing Data To A Cobol Program From Jcl?
Answer :
Data can be passed to a COBOL program through files, PARM parameter and SYSIN DD statement.
Question 42. How Can You Check If A File Is Empty Using Jcl?
Answer :
When the file is used as input in IDCAMS, job completes with a warning (return code 4) if the file is empty.
JCL Related Tutorials |
|
---|---|
VSAM Tutorial | IBM-CICS Tutorial |
IBM DB2 Tutorial | COBOL Tutorial |
DB2 Using SQL Tutorial | IMS/DB Tutorial |
All rights reserved © 2020 Wisdom IT Services India Pvt. Ltd
Wisdomjobs.com is one of the best job search sites in India.