SlideShare a Scribd company logo
1 of 30
Top 20 jcl interview questions and 
answers 
If you need top 7 free ebooks below for your job interview, please visit: 
4career.net 
• Free ebook: 75 interview questions and answers 
• Top 12 secrets to win every job interviews 
• 13 types of interview quesitons and how to face them 
• Top 8 interview thank you letter samples 
• Top 7 cover letter samples 
• Top 8 resume samples 
• Top 15 ways to search new jobs 
Interview questions and answers – free pdf download Page 1 of 30
Tell me about yourself? 
This is probably the most asked 
question in jcl interview. It breaks the 
ice and gets you to talk about 
something you should be fairly 
comfortable with. Have something 
prepared that doesn't sound rehearsed. 
It's not about you telling your life story 
and quite frankly, the interviewer just 
isn't interested. Unless asked to do so, 
stick to your education, career and 
current situation. Work through it 
chronologically from the furthest back 
to the present. 
Interview questions and answers – free pdf download Page 2 of 30
What is JCL? 
JCL (Job Control Language). 
JCL provides the resources that are 
required by program. 
It acts as a communicator between 
operating system and program. 
It is used to utilize the CPU idle time 
that is reflected in the cost of 
utilization. 
It makes jobs of work that are run 
without manual interaction. 
Works according to priority level for 
jobs as batch. 
JCL is not procedural language. 
Without jcl your program will not run 
on mainframe. 
Interview questions and answers – free pdf download Page 3 of 30
What Can You Do for Us That Other Candidates 
Can't? 
What makes you unique? This 
will take an assessment of 
your experiences, skills and 
traits. Summarize concisely: 
"I have a unique combination 
of strong technical skills, and 
the ability to build strong 
customer relationships. This 
allows me to use my 
knowledge and break down 
information to be more user-friendly." 
Interview questions and answers – free pdf download Page 4 of 30
How does JCL act on code(if you take a COBOL 
program) ? 
There are certain set of divisions that 
interact with JCL. 
Identification Division- act as 
introductory part to JCL(program name, 
author,date etc no interacting code). 
Environment Division- now the story 
begins - JCL interacts with OS acc to 
need as it send request for Files under 
file operation. 
Data Division- after files are accessed, 
it works with them according to 
operations to READ or to PRINT files 
(with the help of OS). 
Procedure Division- it contains various 
actions taken on files 
eg to close files that are being used. 
Interview questions and answers – free pdf download Page 5 of 30
What does a disposition of (NEW,CATLG,KEEP) 
for a DSN mean? 
• DISP NEW will allocate new 
memory space for disposition. 
• DISP CATLG will catalog the 
available data set once the step is 
successful. 
• DISP KEEP will retain the dataset. 
Catalog will not be kept when the 
step abends. 
• The above 3 operations always 
ensures that the data set is properly 
handled. 
• The operations are reliable to 
handle the data sets. 
Interview questions and answers – free pdf download Page 6 of 30
What is the difference between the Positional and 
Keyword parameters? Give examples. 
• Positional Parameters are placed in a 
specific position. 
• It needs to be positioned within the 
operand field. 
• Example: 
Employee name in the Job card is a 
positional parameter at the Job level. 
• Keyword Parameters are not placed 
in a specific position or order. 
• Example: MSGLEVEL=(X,Y) 
Interview questions and answers – free pdf download Page 7 of 30
How to pass data to a program that is coded in 
an EXEC statement? 
Following are the methods to pass 
data to the program. 
• Using PARAM in Job Control 
Language. Linkage Section should 
contain the code of the receiving 
variable in COBOL. 
• The PROCEDURE DIVISION 
USING statement is used by using 
PARAM. 
• By passing as instream in Job 
Control Language. 
• ACCEPT statement in COBOL is 
used. 
• By passing in a flat file. 
• File descriptor need to be coded in 
COBOL. 
Interview questions and answers – free pdf download Page 8 of 30
What is the significance of ADDRSPC parameter 
in EXEC statement? 
• Storage for individual step is requested 
by the REGION parameter. 
• Being paged step is prevented by the 
ADDRSPC. 
• For being paged, the default option is 
ADDRSPC=VIRT is used. 
• Once ADDRSPC is set to 
REAL(ADDRSPC=REAL), the step 
would be locked into real storage, when 
executed. 
• REAL is a good option when time 
dependent programs are used. 
• REAL option allows modification of 
channel programs dynamically during 
the I/O operations. 
• Its effect is adverse on the 
performance of the system. 
Interview questions and answers – free pdf download Page 9 of 30
What are S0C1, S0C4, S0C5, S0C7 and SOCB? 
• SOC1- An operation Exception Error 
that may occur because of missing DD 
name. 
• SOC4- An Exception Error that may 
occur because of missing Select 
statement, missing parameters on 
called sub program. 
• SOC5- This exception may occur 
when an unopened dataset is closed, 
bad subscript. 
• SOC7 – This exception may occur 
when a numeric operation is 
performed on non-numeric data, 
working storage is not initialized. 
• SOCB – This operation error may 
occur when a ‘division by zero’ 
occurs. 
Interview questions and answers – free pdf download Page 10 of 30
What are the difference between JCL and JES? 
JCL:JCL is a language. 
• JOBs written in JCL for Mainframe. 
• JOB is executed, space and other 
desired resource is allocated by the 
keywords of JCL. 
JES: 
• JES is a subsystem of MVS. 
• JES handle the JOBs submitted by 
the users. 
• JES takes the control of JCL and 
generates JOB id. 
• JES validates JCL for errors. 
Interview questions and answers – free pdf download Page 11 of 30
How JCL work to handle various input output file 
operations? 
JCL defined two set of parameters to 
handle various i/o operations. 
Due to demand of different type of 
work done by JCL statements. 
POSITIONAL parameter 
It is related directly to the position. 
It gives the file positions in the 
operations. 
It should precede the keyword 
parameter. 
KEYWORD parameter 
It is used to assign to variable 
information. 
It should followed the (=)sign then 
variable info. 
Interview questions and answers – free pdf download Page 12 of 30
HOW does JCL specify the job to the operating 
system? 
JCL defines the job to 
OperatingSystem by so called 
JCL groups. 
Groups are defined acc to the 
work they produce. 
Most work is to only identify 
the job. 
Divides according to JCL 
statement that brings to OS. 
1—identify the job. 
2—execute the program 
named by user. 
3—various DD’s that define 
the files being utilized. 
4—previous work should be 
closed opration, exit 
operation 
Interview questions and answers – free pdf download Page 13 of 30
Suppose I have five jobs to do. But I want to hold 
one? 
Its simple to do so there is predefined set 
of rules for that. 
According to JCL’s predefined set for 
jobs there is a keyword. 
You can hold a job for later execution. 
Specify TYPRUN on the job statement . 
TYPRUN is used to hold job with its 
variable name to HOLD. 
SYNTAX: 
TYPRUN=HOLD 
Eg. For the job you want to hold 
//CAREERIDE JOB 
(P007),’PRASHANT RAJORIA’ 
TYPRUN=HOLD, 
Interview questions and answers – free pdf download Page 14 of 30
Can I share my data with other jobs? How? 
Yes, data can be shared with other jobs. 
When the data is defined for a job then 
define a predefined keyword 
Keyword called DISP means disposition of 
data. as shareable. 
It has values that assign it as shareable. 
SHR is used as value to data as shareable. 
SYNTAX: DISP=SHR 
DISP=SHR should Insert after the data field 
of a job. 
Interview questions and answers – free pdf download Page 15 of 30
Is ACCT parameter mandatory? 
No,ACCT parameter is not mandatory it is 
optional depending upon requirement for the 
following purposes… 
ACCT is used to provide accounting information 
for the jobs steps used in the program. 
ACCT keyword is used in the EXEC statement or 
job steps statement for a particular job. If it is 
used then the accounting information is given by 
the installer to the ACCT. 
Accounting information means the billing 
information for the job for which the ACCT is 
being used. 
Syntax: 
ACCT=accont-information 
Or 
ACCT=(account-information,account-information………) 
The account-information is provided by the 
installer eg. The name provided by the installer in 
the installing steps. 
Interview questions and answers – free pdf download Page 16 of 30
Is their any set of rules for DD? Explain. 
Yes, DD should follow predefined rules 
otherwise it will not be executed or will 
show error message. 
DD is called the data defining sets and it is 
most sensitive part of JCL statements. 
It should follow the EXEC statement for 
that job for which DD is needed. 
Always assign a valid name to DD, 
otherwise it will terminate abnormally. 
For each data set you should define a data 
defining statement. 
Positional parameters are used by DD and 
should use the operand field otherwise error. 
Keyword parameters are used by DD and 
shoud use the operand field otherwise error. 
If both are coded keyword parameter must 
follow positional parameters. 
Interview questions and answers – free pdf download Page 17 of 30
Is it possible to left uncode DISP? If yes, how? 
Yes, it is possible but it needs certain changes 
made as it sets to default automatically. 
DISP is the disposition property set on data 
sets. It is a keyword parameter used in DD 
statements. 
If you left uncode DISP the following changes 
happen- 
It consist of mainly two fields (status, type of 
disposition). If left uncoded the status field 
sets to NEW(default) automatically. 
Normal disposition sets to DELETE if status 
sets to new. 
Abnormal disposition sets to same value as 
the normal disposition sets. 
Normal disposition sets to KEEP if status field 
is set to old. 
SYNTAX: 
DISP=(status,type of disposition) 
If sets to default then 
DISP=(NEW,DELETE,DELETE) 
Interview questions and answers – free pdf download Page 18 of 30
Suppose I have a program in cobol 
Name”CAREERRIDE” and want to execute the 
program by JCL. specify the process ? 
The program to be executed by JCL 
should have a job name. 
And used the command EXEC to 
execute the program in JCL. 
Program name is specified after the 
step name. 
Specify program name in the PGM to 
be executed by JCL. 
PGM is the reserved keyword for 
values program name. 
SYNTAX: 
//Step name command to execute 
PGM=program name, 
Eg. 
//STEP01 EXEC 
PGM=CAREERRIDE, 
Interview questions and answers – free pdf download Page 19 of 30
What is DISP=(NEW,PASS,DELETE)? 
• DISP NEW indicates a new data set is 
defined. 
• DSIP NEW will allocate new memory 
space. 
• DISP PASS – the data set need to be 
passed to the next step, once the current 
step is successful. 
• DISP DELETE is to remove the 
available data set once the step abends. 
• So that only non-abended data sets are 
available. 
Interview questions and answers – free pdf download Page 20 of 30
How to alter the parameters for the existing 
GDG? 
• ALTER command is used to alter the parameters of 
existing GDG. 
• New value can be provided for parameters using 
ALTER command. 
• Values can be given in one shot or individually. 
• ALTER gdgname LIMIT(05) alters the limit to 5. 
• ALTER gdgname LIMIT(05) SCRATCH 
NOEMPTY - This option alters the scratch and no 
empty options. 
Brief description of inline procedure of JCL. 
• In-stream PROC is defined in JCL stream itself. 
• It does not reside in PROCLIB. 
• For inline perform the code would be 
PERFORM UNTIL SWITCH=’Y’ 
……….. BODY OF THE CODE……. 
END-PERFORM. 
• The body of the code from is appeared in-line. 
• The code does not appear in a separate paragraph. 
Interview questions and answers – free pdf download Page 21 of 30
Useful job interview materials: 
If you need top free ebooks below for your job interview, please visit: 
4career.net 
• Free ebook: 75 interview questions and answers 
• Top 12 secrets to win every job interviews 
• Top 36 situational interview questions 
• 440 behavioral interview questions 
• 95 management interview questions and answers 
• 30 phone interview questions 
• Top 8 interview thank you letter samples 
• 290 competency based interview questions 
• 45 internship interview questions 
• Top 7 cover letter samples 
• Top 8 resume samples 
• Top 15 ways to search new jobs 
Interview questions and answers – free pdf download Page 22 of 30
Top 6 tips for job interview 
Interview questions and answers – free pdf download Page 23 of 30
Tip 1: Do your homework 
You'll likely be asked difficult questions 
during the interview. Preparing the list of 
likely questions in advance will help you 
easily transition from question to question. 
Spend time researching the company. Look 
at its site to understand its mission statement, 
product offerings, and management team. A 
few hours spent researching before your 
interview can impress the hiring manager 
greatly. Read the company's annual report 
(often posted on the site), review the 
employee's LinkedIn profiles, and search the 
company on Google News, to see if they've 
been mentioned in the media lately. The 
more you know about a company, the more 
you'll know how you'll fit in to it. 
Ref material: 4career.net/job-interview-checklist- 
40-points 
Interview questions and answers – free pdf download Page 24 of 30
Tip 2: First impressions 
When meeting someone for the first time, we 
instantaneously make our minds about various aspects of 
their personality. 
Prepare and plan that first impression long before you 
walk in the door. Continue that excellent impression in 
the days following, and that job could be yours. 
Therefore: 
· Never arrive late. 
· Use positive body language and turn on your 
charm right from the start. 
· Switch off your mobile before you step into the 
room. 
· Look fabulous; dress sharp and make sure you look 
your best. 
· Start the interview with a handshake; give a nice 
firm press and then some up and down movement. 
· Determine to establish a rapport with the 
interviewer right from the start. 
· Always let the interviewer finish speaking before 
giving your response. 
· Express yourself fluently with clarity and 
precision. 
Interview questions and answers – free pdf download Page 25 of 30
Useful material: 4career.net/top-10-elements-to-make-a-good- 
first-impression-at-a-job-interview 
Tip 3: The “Hidden” Job Market 
Many of us don’t recognize that hidden job 
market is a huge one and accounts for 2/3 
of total job demand from enterprises. This 
means that if you know how to exploit a 
hidden job market, you can increase your 
chance of getting the job up to 300%. 
In this section, the author shares his 
experience and useful tips to exploit hidden 
job market. 
Here are some sources to get penetrating 
into a hidden job market: Friends; Family; 
Ex-coworkers; Referral; HR communities; 
Field communities; Social networks such 
as Facebook, Twitter…; Last recruitment 
ads from recruiters; HR emails of potential 
recruiters… 
Interview questions and answers – free pdf download Page 26 of 30
Tip 4: Do-It-Yourself Interviewing Practice 
There are a number of ways to prepare 
for an interview at home without the 
help of a professional career counselor 
or coach or a fee-based service. 
You can practice interviews all by 
yourself or recruit friends and family to 
assist you. 
Useful material: 4career.net/free-ebook- 
75-interview-questions-and-answers 
Interview questions and answers – free pdf download Page 27 of 30
Tip 5: Ask questions 
Do not leave the interview without 
ensuring that you know all that you 
want to know about the position. Once 
the interview is over, your chance to 
have important questions answered has 
ended. Asking questions also can show 
that you are interested in the job. Be 
specific with your questions. Ask about 
the company and the industry. Avoid 
asking personal questions of the 
interviewer and avoid asking questions 
pertaining to politics, religion and the 
like. 
Ref material: 4career.net/25-questions-to- 
ask-employers-during-your-job-interview 
Interview questions and answers – free pdf download Page 28 of 30
Tip 6: Follow up and send a thank-you note 
Following up after an interview can 
help you make a lasting impression and 
set you apart from the crowd. 
Philip Farina, CPP, a security career 
expert at Manta Security Management 
Recruiters, says: "Send both an email as 
well as a hard-copy thank-you note, 
expressing excitement, qualifications 
and further interest in the position. 
Invite the hiring manager to contact you 
for additional information. This is also 
an excellent time to send a strategic 
follow-up letter of interest." 
Ref material: 4career.net/top-8- 
interview-thank-you-letter-samples 
Interview questions and answers – free pdf download Page 29 of 30
Interview questions and answers – free pdf download Page 30 of 30

More Related Content

What's hot

Job Control Language
Job Control LanguageJob Control Language
Job Control Languagekapa rohit
 
DB2 Interview Questions - Part 1
DB2 Interview Questions - Part 1DB2 Interview Questions - Part 1
DB2 Interview Questions - Part 1ReKruiTIn.com
 
Mainframe refresher-part-1
Mainframe refresher-part-1Mainframe refresher-part-1
Mainframe refresher-part-1vishwas17
 
20 DFSORT Tricks For Zos Users - Interview Questions
20 DFSORT Tricks For Zos Users - Interview Questions20 DFSORT Tricks For Zos Users - Interview Questions
20 DFSORT Tricks For Zos Users - Interview QuestionsSrinimf-Slides
 
Introduction of ISPF
Introduction of ISPFIntroduction of ISPF
Introduction of ISPFAnil Bharti
 
Mainframe JCL Part - 1
Mainframe JCL Part - 1Mainframe JCL Part - 1
Mainframe JCL Part - 1janaki ram
 
Practical Recipes for Daily DBA Activities using DB2 9 and 10 for z/OS
Practical Recipes for Daily DBA Activities using DB2 9 and 10 for z/OSPractical Recipes for Daily DBA Activities using DB2 9 and 10 for z/OS
Practical Recipes for Daily DBA Activities using DB2 9 and 10 for z/OSCuneyt Goksu
 
JCL UTILITIES IEBCOPY
JCL UTILITIES IEBCOPYJCL UTILITIES IEBCOPY
JCL UTILITIES IEBCOPYjanaki ram
 
JCL FOR FRESHERS
JCL FOR FRESHERSJCL FOR FRESHERS
JCL FOR FRESHERSNirmal Pati
 
Sap Abap Reports
Sap Abap ReportsSap Abap Reports
Sap Abap Reportsvbpc
 
Basic concept of jcl
Basic concept of jclBasic concept of jcl
Basic concept of jclAnil Bharti
 
BATCH DATA COMMUNICATION
BATCH DATA COMMUNICATIONBATCH DATA COMMUNICATION
BATCH DATA COMMUNICATIONKranthi Kumar
 
Dialog Programming Overview
Dialog Programming OverviewDialog Programming Overview
Dialog Programming Overviewsapdocs. info
 
ALL ABOUT DB2 DSNZPARM
ALL ABOUT DB2 DSNZPARMALL ABOUT DB2 DSNZPARM
ALL ABOUT DB2 DSNZPARMIBM
 

What's hot (20)

Cobol interview-questions
Cobol interview-questionsCobol interview-questions
Cobol interview-questions
 
Job Control Language
Job Control LanguageJob Control Language
Job Control Language
 
DB2 Interview Questions - Part 1
DB2 Interview Questions - Part 1DB2 Interview Questions - Part 1
DB2 Interview Questions - Part 1
 
IBM Utilities
IBM UtilitiesIBM Utilities
IBM Utilities
 
Mainframe refresher-part-1
Mainframe refresher-part-1Mainframe refresher-part-1
Mainframe refresher-part-1
 
20 DFSORT Tricks For Zos Users - Interview Questions
20 DFSORT Tricks For Zos Users - Interview Questions20 DFSORT Tricks For Zos Users - Interview Questions
20 DFSORT Tricks For Zos Users - Interview Questions
 
Mvs commands
Mvs commandsMvs commands
Mvs commands
 
Introduction of ISPF
Introduction of ISPFIntroduction of ISPF
Introduction of ISPF
 
Jcl
JclJcl
Jcl
 
Mainframe JCL Part - 1
Mainframe JCL Part - 1Mainframe JCL Part - 1
Mainframe JCL Part - 1
 
Practical Recipes for Daily DBA Activities using DB2 9 and 10 for z/OS
Practical Recipes for Daily DBA Activities using DB2 9 and 10 for z/OSPractical Recipes for Daily DBA Activities using DB2 9 and 10 for z/OS
Practical Recipes for Daily DBA Activities using DB2 9 and 10 for z/OS
 
MVS ABEND CODES
MVS ABEND CODESMVS ABEND CODES
MVS ABEND CODES
 
JCL UTILITIES IEBCOPY
JCL UTILITIES IEBCOPYJCL UTILITIES IEBCOPY
JCL UTILITIES IEBCOPY
 
JCL FOR FRESHERS
JCL FOR FRESHERSJCL FOR FRESHERS
JCL FOR FRESHERS
 
Sap Abap Reports
Sap Abap ReportsSap Abap Reports
Sap Abap Reports
 
Basic concept of jcl
Basic concept of jclBasic concept of jcl
Basic concept of jcl
 
BATCH DATA COMMUNICATION
BATCH DATA COMMUNICATIONBATCH DATA COMMUNICATION
BATCH DATA COMMUNICATION
 
Dialog Programming Overview
Dialog Programming OverviewDialog Programming Overview
Dialog Programming Overview
 
SKILLWISE-DB2 DBA
SKILLWISE-DB2 DBASKILLWISE-DB2 DBA
SKILLWISE-DB2 DBA
 
ALL ABOUT DB2 DSNZPARM
ALL ABOUT DB2 DSNZPARMALL ABOUT DB2 DSNZPARM
ALL ABOUT DB2 DSNZPARM
 

Viewers also liked

Viewers also liked (14)

Tso and ispf
Tso and ispfTso and ispf
Tso and ispf
 
Top 9 mainframe testing interview questions answers
Top 9 mainframe testing interview questions answersTop 9 mainframe testing interview questions answers
Top 9 mainframe testing interview questions answers
 
Cobol questions and answers
Cobol questions and answersCobol questions and answers
Cobol questions and answers
 
Jcl interview questions
Jcl interview questionsJcl interview questions
Jcl interview questions
 
JCL DFSORT
JCL DFSORTJCL DFSORT
JCL DFSORT
 
Ipl process
Ipl processIpl process
Ipl process
 
COBOL FOR FRESHER
COBOL FOR FRESHERCOBOL FOR FRESHER
COBOL FOR FRESHER
 
Cobol basics 19-6-2010
Cobol basics 19-6-2010Cobol basics 19-6-2010
Cobol basics 19-6-2010
 
IMSDB-COBOL PROGRAM EXPLANATION
IMSDB-COBOL PROGRAM EXPLANATIONIMSDB-COBOL PROGRAM EXPLANATION
IMSDB-COBOL PROGRAM EXPLANATION
 
Sql queries
Sql queriesSql queries
Sql queries
 
100 sql queries
100 sql queries100 sql queries
100 sql queries
 
Db2 Important questions to read
Db2 Important questions to readDb2 Important questions to read
Db2 Important questions to read
 
Top 9 cobol interview questions answers
Top 9 cobol interview questions answersTop 9 cobol interview questions answers
Top 9 cobol interview questions answers
 
Sql queires
Sql queiresSql queires
Sql queires
 

Similar to Top jcl interview questions and answers job interview tips

Ood and solid principles
Ood and solid principlesOod and solid principles
Ood and solid principlesAvinash Kadam
 
Canadian Experts Discuss Modern Data Stacks and Cloud Computing for 5 Years o...
Canadian Experts Discuss Modern Data Stacks and Cloud Computing for 5 Years o...Canadian Experts Discuss Modern Data Stacks and Cloud Computing for 5 Years o...
Canadian Experts Discuss Modern Data Stacks and Cloud Computing for 5 Years o...Daniel Zivkovic
 
Mastering Data Engineering: Common Data Engineer Interview Questions You Shou...
Mastering Data Engineering: Common Data Engineer Interview Questions You Shou...Mastering Data Engineering: Common Data Engineer Interview Questions You Shou...
Mastering Data Engineering: Common Data Engineer Interview Questions You Shou...FredReynolds2
 
TITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptx
TITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptxTITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptx
TITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptxTArmy1
 
Sybase job interview_preparation_guide
Sybase job interview_preparation_guideSybase job interview_preparation_guide
Sybase job interview_preparation_guideNV Suresh Kumar
 
DB2 Performance Tuning Z/OS - email me please for more details
DB2 Performance Tuning Z/OS - email me please for more detailsDB2 Performance Tuning Z/OS - email me please for more details
DB2 Performance Tuning Z/OS - email me please for more detailsManikandan Suresh
 
artificggggggggggggggialintelligence.pdf
artificggggggggggggggialintelligence.pdfartificggggggggggggggialintelligence.pdf
artificggggggggggggggialintelligence.pdftt4765690
 
USING FACTORY DESIGN PATTERNS IN MAP REDUCE DESIGN FOR BIG DATA ANALYTICS
USING FACTORY DESIGN PATTERNS IN MAP REDUCE DESIGN FOR BIG DATA ANALYTICSUSING FACTORY DESIGN PATTERNS IN MAP REDUCE DESIGN FOR BIG DATA ANALYTICS
USING FACTORY DESIGN PATTERNS IN MAP REDUCE DESIGN FOR BIG DATA ANALYTICSHCL Technologies
 
Basic-Project-Estimation-1999
Basic-Project-Estimation-1999Basic-Project-Estimation-1999
Basic-Project-Estimation-1999Michael Wigley
 
Data Base Testing Interview Questions
Data Base Testing Interview QuestionsData Base Testing Interview Questions
Data Base Testing Interview QuestionsRita Singh
 
Bt0081 software engineering
Bt0081   software engineeringBt0081   software engineering
Bt0081 software engineeringsmumbahelp
 
NLP-Focused Applied ML at Scale for Global Fleet Analytics at ExxonMobil
NLP-Focused Applied ML at Scale for Global Fleet Analytics at ExxonMobilNLP-Focused Applied ML at Scale for Global Fleet Analytics at ExxonMobil
NLP-Focused Applied ML at Scale for Global Fleet Analytics at ExxonMobilDatabricks
 
FlorenceAI: Reinventing Data Science at Humana
FlorenceAI: Reinventing Data Science at HumanaFlorenceAI: Reinventing Data Science at Humana
FlorenceAI: Reinventing Data Science at HumanaDatabricks
 
The Life-Changing Magic of Tidying Up in Salesforce
The Life-Changing Magic of Tidying Up in SalesforceThe Life-Changing Magic of Tidying Up in Salesforce
The Life-Changing Magic of Tidying Up in SalesforceInternetCreations
 
miniprojectreport
miniprojectreportminiprojectreport
miniprojectreportsilpa mohan
 
Mingle box - Online Job seeking System
Mingle box - Online Job seeking SystemMingle box - Online Job seeking System
Mingle box - Online Job seeking SystemBharat Kalia
 

Similar to Top jcl interview questions and answers job interview tips (20)

Ood and solid principles
Ood and solid principlesOod and solid principles
Ood and solid principles
 
Canadian Experts Discuss Modern Data Stacks and Cloud Computing for 5 Years o...
Canadian Experts Discuss Modern Data Stacks and Cloud Computing for 5 Years o...Canadian Experts Discuss Modern Data Stacks and Cloud Computing for 5 Years o...
Canadian Experts Discuss Modern Data Stacks and Cloud Computing for 5 Years o...
 
Mastering Data Engineering: Common Data Engineer Interview Questions You Shou...
Mastering Data Engineering: Common Data Engineer Interview Questions You Shou...Mastering Data Engineering: Common Data Engineer Interview Questions You Shou...
Mastering Data Engineering: Common Data Engineer Interview Questions You Shou...
 
TITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptx
TITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptxTITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptx
TITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptx
 
Sybase job interview_preparation_guide
Sybase job interview_preparation_guideSybase job interview_preparation_guide
Sybase job interview_preparation_guide
 
DB2 Performance Tuning Z/OS - email me please for more details
DB2 Performance Tuning Z/OS - email me please for more detailsDB2 Performance Tuning Z/OS - email me please for more details
DB2 Performance Tuning Z/OS - email me please for more details
 
artificggggggggggggggialintelligence.pdf
artificggggggggggggggialintelligence.pdfartificggggggggggggggialintelligence.pdf
artificggggggggggggggialintelligence.pdf
 
USING FACTORY DESIGN PATTERNS IN MAP REDUCE DESIGN FOR BIG DATA ANALYTICS
USING FACTORY DESIGN PATTERNS IN MAP REDUCE DESIGN FOR BIG DATA ANALYTICSUSING FACTORY DESIGN PATTERNS IN MAP REDUCE DESIGN FOR BIG DATA ANALYTICS
USING FACTORY DESIGN PATTERNS IN MAP REDUCE DESIGN FOR BIG DATA ANALYTICS
 
Sandeep_MF_4+years of exp
Sandeep_MF_4+years of expSandeep_MF_4+years of exp
Sandeep_MF_4+years of exp
 
[OOP - Lec 02] Why do we need OOP
[OOP - Lec 02] Why do we need OOP[OOP - Lec 02] Why do we need OOP
[OOP - Lec 02] Why do we need OOP
 
Basic-Project-Estimation-1999
Basic-Project-Estimation-1999Basic-Project-Estimation-1999
Basic-Project-Estimation-1999
 
C++ notes.pdf
C++ notes.pdfC++ notes.pdf
C++ notes.pdf
 
Sql Lab 4 Essay
Sql Lab 4 EssaySql Lab 4 Essay
Sql Lab 4 Essay
 
Data Base Testing Interview Questions
Data Base Testing Interview QuestionsData Base Testing Interview Questions
Data Base Testing Interview Questions
 
Bt0081 software engineering
Bt0081   software engineeringBt0081   software engineering
Bt0081 software engineering
 
NLP-Focused Applied ML at Scale for Global Fleet Analytics at ExxonMobil
NLP-Focused Applied ML at Scale for Global Fleet Analytics at ExxonMobilNLP-Focused Applied ML at Scale for Global Fleet Analytics at ExxonMobil
NLP-Focused Applied ML at Scale for Global Fleet Analytics at ExxonMobil
 
FlorenceAI: Reinventing Data Science at Humana
FlorenceAI: Reinventing Data Science at HumanaFlorenceAI: Reinventing Data Science at Humana
FlorenceAI: Reinventing Data Science at Humana
 
The Life-Changing Magic of Tidying Up in Salesforce
The Life-Changing Magic of Tidying Up in SalesforceThe Life-Changing Magic of Tidying Up in Salesforce
The Life-Changing Magic of Tidying Up in Salesforce
 
miniprojectreport
miniprojectreportminiprojectreport
miniprojectreport
 
Mingle box - Online Job seeking System
Mingle box - Online Job seeking SystemMingle box - Online Job seeking System
Mingle box - Online Job seeking System
 

Recently uploaded

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - Englishneillewis46
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxDr. Sarita Anand
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsKarakKing
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 

Recently uploaded (20)

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 

Top jcl interview questions and answers job interview tips

  • 1. Top 20 jcl interview questions and answers If you need top 7 free ebooks below for your job interview, please visit: 4career.net • Free ebook: 75 interview questions and answers • Top 12 secrets to win every job interviews • 13 types of interview quesitons and how to face them • Top 8 interview thank you letter samples • Top 7 cover letter samples • Top 8 resume samples • Top 15 ways to search new jobs Interview questions and answers – free pdf download Page 1 of 30
  • 2. Tell me about yourself? This is probably the most asked question in jcl interview. It breaks the ice and gets you to talk about something you should be fairly comfortable with. Have something prepared that doesn't sound rehearsed. It's not about you telling your life story and quite frankly, the interviewer just isn't interested. Unless asked to do so, stick to your education, career and current situation. Work through it chronologically from the furthest back to the present. Interview questions and answers – free pdf download Page 2 of 30
  • 3. What is JCL? JCL (Job Control Language). JCL provides the resources that are required by program. It acts as a communicator between operating system and program. It is used to utilize the CPU idle time that is reflected in the cost of utilization. It makes jobs of work that are run without manual interaction. Works according to priority level for jobs as batch. JCL is not procedural language. Without jcl your program will not run on mainframe. Interview questions and answers – free pdf download Page 3 of 30
  • 4. What Can You Do for Us That Other Candidates Can't? What makes you unique? This will take an assessment of your experiences, skills and traits. Summarize concisely: "I have a unique combination of strong technical skills, and the ability to build strong customer relationships. This allows me to use my knowledge and break down information to be more user-friendly." Interview questions and answers – free pdf download Page 4 of 30
  • 5. How does JCL act on code(if you take a COBOL program) ? There are certain set of divisions that interact with JCL. Identification Division- act as introductory part to JCL(program name, author,date etc no interacting code). Environment Division- now the story begins - JCL interacts with OS acc to need as it send request for Files under file operation. Data Division- after files are accessed, it works with them according to operations to READ or to PRINT files (with the help of OS). Procedure Division- it contains various actions taken on files eg to close files that are being used. Interview questions and answers – free pdf download Page 5 of 30
  • 6. What does a disposition of (NEW,CATLG,KEEP) for a DSN mean? • DISP NEW will allocate new memory space for disposition. • DISP CATLG will catalog the available data set once the step is successful. • DISP KEEP will retain the dataset. Catalog will not be kept when the step abends. • The above 3 operations always ensures that the data set is properly handled. • The operations are reliable to handle the data sets. Interview questions and answers – free pdf download Page 6 of 30
  • 7. What is the difference between the Positional and Keyword parameters? Give examples. • Positional Parameters are placed in a specific position. • It needs to be positioned within the operand field. • Example: Employee name in the Job card is a positional parameter at the Job level. • Keyword Parameters are not placed in a specific position or order. • Example: MSGLEVEL=(X,Y) Interview questions and answers – free pdf download Page 7 of 30
  • 8. How to pass data to a program that is coded in an EXEC statement? Following are the methods to pass data to the program. • Using PARAM in Job Control Language. Linkage Section should contain the code of the receiving variable in COBOL. • The PROCEDURE DIVISION USING statement is used by using PARAM. • By passing as instream in Job Control Language. • ACCEPT statement in COBOL is used. • By passing in a flat file. • File descriptor need to be coded in COBOL. Interview questions and answers – free pdf download Page 8 of 30
  • 9. What is the significance of ADDRSPC parameter in EXEC statement? • Storage for individual step is requested by the REGION parameter. • Being paged step is prevented by the ADDRSPC. • For being paged, the default option is ADDRSPC=VIRT is used. • Once ADDRSPC is set to REAL(ADDRSPC=REAL), the step would be locked into real storage, when executed. • REAL is a good option when time dependent programs are used. • REAL option allows modification of channel programs dynamically during the I/O operations. • Its effect is adverse on the performance of the system. Interview questions and answers – free pdf download Page 9 of 30
  • 10. What are S0C1, S0C4, S0C5, S0C7 and SOCB? • SOC1- An operation Exception Error that may occur because of missing DD name. • SOC4- An Exception Error that may occur because of missing Select statement, missing parameters on called sub program. • SOC5- This exception may occur when an unopened dataset is closed, bad subscript. • SOC7 – This exception may occur when a numeric operation is performed on non-numeric data, working storage is not initialized. • SOCB – This operation error may occur when a ‘division by zero’ occurs. Interview questions and answers – free pdf download Page 10 of 30
  • 11. What are the difference between JCL and JES? JCL:JCL is a language. • JOBs written in JCL for Mainframe. • JOB is executed, space and other desired resource is allocated by the keywords of JCL. JES: • JES is a subsystem of MVS. • JES handle the JOBs submitted by the users. • JES takes the control of JCL and generates JOB id. • JES validates JCL for errors. Interview questions and answers – free pdf download Page 11 of 30
  • 12. How JCL work to handle various input output file operations? JCL defined two set of parameters to handle various i/o operations. Due to demand of different type of work done by JCL statements. POSITIONAL parameter It is related directly to the position. It gives the file positions in the operations. It should precede the keyword parameter. KEYWORD parameter It is used to assign to variable information. It should followed the (=)sign then variable info. Interview questions and answers – free pdf download Page 12 of 30
  • 13. HOW does JCL specify the job to the operating system? JCL defines the job to OperatingSystem by so called JCL groups. Groups are defined acc to the work they produce. Most work is to only identify the job. Divides according to JCL statement that brings to OS. 1—identify the job. 2—execute the program named by user. 3—various DD’s that define the files being utilized. 4—previous work should be closed opration, exit operation Interview questions and answers – free pdf download Page 13 of 30
  • 14. Suppose I have five jobs to do. But I want to hold one? Its simple to do so there is predefined set of rules for that. According to JCL’s predefined set for jobs there is a keyword. You can hold a job for later execution. Specify TYPRUN on the job statement . TYPRUN is used to hold job with its variable name to HOLD. SYNTAX: TYPRUN=HOLD Eg. For the job you want to hold //CAREERIDE JOB (P007),’PRASHANT RAJORIA’ TYPRUN=HOLD, Interview questions and answers – free pdf download Page 14 of 30
  • 15. Can I share my data with other jobs? How? Yes, data can be shared with other jobs. When the data is defined for a job then define a predefined keyword Keyword called DISP means disposition of data. as shareable. It has values that assign it as shareable. SHR is used as value to data as shareable. SYNTAX: DISP=SHR DISP=SHR should Insert after the data field of a job. Interview questions and answers – free pdf download Page 15 of 30
  • 16. Is ACCT parameter mandatory? No,ACCT parameter is not mandatory it is optional depending upon requirement for the following purposes… ACCT is used to provide accounting information for the jobs steps used in the program. ACCT keyword is used in the EXEC statement or job steps statement for a particular job. If it is used then the accounting information is given by the installer to the ACCT. Accounting information means the billing information for the job for which the ACCT is being used. Syntax: ACCT=accont-information Or ACCT=(account-information,account-information………) The account-information is provided by the installer eg. The name provided by the installer in the installing steps. Interview questions and answers – free pdf download Page 16 of 30
  • 17. Is their any set of rules for DD? Explain. Yes, DD should follow predefined rules otherwise it will not be executed or will show error message. DD is called the data defining sets and it is most sensitive part of JCL statements. It should follow the EXEC statement for that job for which DD is needed. Always assign a valid name to DD, otherwise it will terminate abnormally. For each data set you should define a data defining statement. Positional parameters are used by DD and should use the operand field otherwise error. Keyword parameters are used by DD and shoud use the operand field otherwise error. If both are coded keyword parameter must follow positional parameters. Interview questions and answers – free pdf download Page 17 of 30
  • 18. Is it possible to left uncode DISP? If yes, how? Yes, it is possible but it needs certain changes made as it sets to default automatically. DISP is the disposition property set on data sets. It is a keyword parameter used in DD statements. If you left uncode DISP the following changes happen- It consist of mainly two fields (status, type of disposition). If left uncoded the status field sets to NEW(default) automatically. Normal disposition sets to DELETE if status sets to new. Abnormal disposition sets to same value as the normal disposition sets. Normal disposition sets to KEEP if status field is set to old. SYNTAX: DISP=(status,type of disposition) If sets to default then DISP=(NEW,DELETE,DELETE) Interview questions and answers – free pdf download Page 18 of 30
  • 19. Suppose I have a program in cobol Name”CAREERRIDE” and want to execute the program by JCL. specify the process ? The program to be executed by JCL should have a job name. And used the command EXEC to execute the program in JCL. Program name is specified after the step name. Specify program name in the PGM to be executed by JCL. PGM is the reserved keyword for values program name. SYNTAX: //Step name command to execute PGM=program name, Eg. //STEP01 EXEC PGM=CAREERRIDE, Interview questions and answers – free pdf download Page 19 of 30
  • 20. What is DISP=(NEW,PASS,DELETE)? • DISP NEW indicates a new data set is defined. • DSIP NEW will allocate new memory space. • DISP PASS – the data set need to be passed to the next step, once the current step is successful. • DISP DELETE is to remove the available data set once the step abends. • So that only non-abended data sets are available. Interview questions and answers – free pdf download Page 20 of 30
  • 21. How to alter the parameters for the existing GDG? • ALTER command is used to alter the parameters of existing GDG. • New value can be provided for parameters using ALTER command. • Values can be given in one shot or individually. • ALTER gdgname LIMIT(05) alters the limit to 5. • ALTER gdgname LIMIT(05) SCRATCH NOEMPTY - This option alters the scratch and no empty options. Brief description of inline procedure of JCL. • In-stream PROC is defined in JCL stream itself. • It does not reside in PROCLIB. • For inline perform the code would be PERFORM UNTIL SWITCH=’Y’ ……….. BODY OF THE CODE……. END-PERFORM. • The body of the code from is appeared in-line. • The code does not appear in a separate paragraph. Interview questions and answers – free pdf download Page 21 of 30
  • 22. Useful job interview materials: If you need top free ebooks below for your job interview, please visit: 4career.net • Free ebook: 75 interview questions and answers • Top 12 secrets to win every job interviews • Top 36 situational interview questions • 440 behavioral interview questions • 95 management interview questions and answers • 30 phone interview questions • Top 8 interview thank you letter samples • 290 competency based interview questions • 45 internship interview questions • Top 7 cover letter samples • Top 8 resume samples • Top 15 ways to search new jobs Interview questions and answers – free pdf download Page 22 of 30
  • 23. Top 6 tips for job interview Interview questions and answers – free pdf download Page 23 of 30
  • 24. Tip 1: Do your homework You'll likely be asked difficult questions during the interview. Preparing the list of likely questions in advance will help you easily transition from question to question. Spend time researching the company. Look at its site to understand its mission statement, product offerings, and management team. A few hours spent researching before your interview can impress the hiring manager greatly. Read the company's annual report (often posted on the site), review the employee's LinkedIn profiles, and search the company on Google News, to see if they've been mentioned in the media lately. The more you know about a company, the more you'll know how you'll fit in to it. Ref material: 4career.net/job-interview-checklist- 40-points Interview questions and answers – free pdf download Page 24 of 30
  • 25. Tip 2: First impressions When meeting someone for the first time, we instantaneously make our minds about various aspects of their personality. Prepare and plan that first impression long before you walk in the door. Continue that excellent impression in the days following, and that job could be yours. Therefore: · Never arrive late. · Use positive body language and turn on your charm right from the start. · Switch off your mobile before you step into the room. · Look fabulous; dress sharp and make sure you look your best. · Start the interview with a handshake; give a nice firm press and then some up and down movement. · Determine to establish a rapport with the interviewer right from the start. · Always let the interviewer finish speaking before giving your response. · Express yourself fluently with clarity and precision. Interview questions and answers – free pdf download Page 25 of 30
  • 26. Useful material: 4career.net/top-10-elements-to-make-a-good- first-impression-at-a-job-interview Tip 3: The “Hidden” Job Market Many of us don’t recognize that hidden job market is a huge one and accounts for 2/3 of total job demand from enterprises. This means that if you know how to exploit a hidden job market, you can increase your chance of getting the job up to 300%. In this section, the author shares his experience and useful tips to exploit hidden job market. Here are some sources to get penetrating into a hidden job market: Friends; Family; Ex-coworkers; Referral; HR communities; Field communities; Social networks such as Facebook, Twitter…; Last recruitment ads from recruiters; HR emails of potential recruiters… Interview questions and answers – free pdf download Page 26 of 30
  • 27. Tip 4: Do-It-Yourself Interviewing Practice There are a number of ways to prepare for an interview at home without the help of a professional career counselor or coach or a fee-based service. You can practice interviews all by yourself or recruit friends and family to assist you. Useful material: 4career.net/free-ebook- 75-interview-questions-and-answers Interview questions and answers – free pdf download Page 27 of 30
  • 28. Tip 5: Ask questions Do not leave the interview without ensuring that you know all that you want to know about the position. Once the interview is over, your chance to have important questions answered has ended. Asking questions also can show that you are interested in the job. Be specific with your questions. Ask about the company and the industry. Avoid asking personal questions of the interviewer and avoid asking questions pertaining to politics, religion and the like. Ref material: 4career.net/25-questions-to- ask-employers-during-your-job-interview Interview questions and answers – free pdf download Page 28 of 30
  • 29. Tip 6: Follow up and send a thank-you note Following up after an interview can help you make a lasting impression and set you apart from the crowd. Philip Farina, CPP, a security career expert at Manta Security Management Recruiters, says: "Send both an email as well as a hard-copy thank-you note, expressing excitement, qualifications and further interest in the position. Invite the hiring manager to contact you for additional information. This is also an excellent time to send a strategic follow-up letter of interest." Ref material: 4career.net/top-8- interview-thank-you-letter-samples Interview questions and answers – free pdf download Page 29 of 30
  • 30. Interview questions and answers – free pdf download Page 30 of 30