wht is the d/f between positional parameter n keyword parameter ?
Answer / ranjith
Positional Parameter: where the position of the parameters
cannot be changed and it has to follow as it is..
eg: let us say a,b,c are the parameters in jobcard
correct: //jobname job a,b,c
incorrect: //jobname job b,a,c
//jobname job a,c,b
Keyword parameter: where the position of the parameters be
changed/or an optional. Can be placed after Positional
parameters, if req.
eg: let us say a,b are positional parameters
c,d are keyword parameters
correct: //jobname job a,b,c,d
//jobname job a,b,d,c
incorrect: //jobname job a,c,b,d
//jobname job c,d,a,b
//jobname job acct-info(PP), 'pgrname'(PP),
// RESTART(KP), TYPRUN(KP), TIME(KP),
// REGION(KP)
| Is This Answer Correct ? | 22 Yes | 2 No |
What is a Dummy Utility and what it does ?
if we have a job consist of two steps and each step calling a proc having 10 steps each then how many steps are counted only 2 or 22(10+10+1+1)? can we have more than 255 steps in a single job?
What is the use of IEBGENER ?
Explain about LMGET�read a logical record from a data set
If we have 100 job steps in JCL and we want to excute steps only starting from 43 to 50, then how it can be coded in JCL/
which utility is used to run a cobol-db2 program?
What is maximum length of block size?
5 Answers Cap Gemini, Kanbay, TCS,
In one of intervie, my interviwer asked, I have a file which contains 4 records I would like to split the 4 different outputs for each record how to do?
14 Answers Cap Gemini, Cognizant, JPMorgan Chase, TCS, Xansa,
Explain the purpose of dd * statement in jcl?
what is use of disp parameter in dd statement?
Hi, Please clear me when COND=ONLY and COND=EVEN. Explain me with example.
Suppose I have seven jobs to do, but I want to hold one than how can I do this?