in step1 of a jcl,disp=(mod,delete,delete)
step02 exec pgm=ccc,cond=(0,le)
will step02 be executed?

i)never
ii)always
iii)
iv)...

i dont remember options

Answers were Sorted based on User's Feedback



in step1 of a jcl,disp=(mod,delete,delete) step02 exec pgm=ccc,cond=(0,le) will step02 be executed..

Answer / y@$w@nth

disp=(mod,delete,delete)
will tells that if the file is not previously created create
it if it is already created then use that file.

the two delete statements will tell that delete the file
after norml and abnormal termination.

step02 exec pgm=ccc,cond=(0,le)
Here step02 was coded as condition code which always falls
to true so this step wont execute in any situation......

Is This Answer Correct ?    26 Yes 0 No

in step1 of a jcl,disp=(mod,delete,delete) step02 exec pgm=ccc,cond=(0,le) will step02 be executed..

Answer / k.suamn

it does not exicute

Is This Answer Correct ?    5 Yes 0 No

in step1 of a jcl,disp=(mod,delete,delete) step02 exec pgm=ccc,cond=(0,le) will step02 be executed..

Answer / vinay sonar

Step2 will not execute because always true condition is
coded in step2.
condition code(cc) 0 will be always less than any previous
step cc say 0,4,8,4095 etc. so condition is always true.So
step2 wont execute

Is This Answer Correct ?    3 Yes 0 No

in step1 of a jcl,disp=(mod,delete,delete) step02 exec pgm=ccc,cond=(0,le) will step02 be executed..

Answer / sowmya

step2 will be executed.the steps after the step2 will be by-
passed

Is This Answer Correct ?    1 Yes 9 No

Post New Answer

More JCL Interview Questions

I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?

0 Answers  


we define the array like this 01 array 02 veg occurs 10 times 03 days occurs 6 times 04 cost pic 9(5). but why don't we write it as 01 array 02 veg occurs 10 times 03 days occurs 6 time 04 cost pic 9(5). is there any error will occur ,what is it? and why don't 01,02,03 not contain picture clause? if we put pic in those is there any error will occur what is it will occur?

1 Answers   Fidelity,


how to count the number of members in pds?

2 Answers  


Can I copy the FB (fixed Block) record length file to a VB (variable Block)record length file and Vise Versa? If Yes then how ? is that thru one of the JCL utility ?

3 Answers  


proc1,proc2,up to proc5 is there if i want to call proc1 and proc5how can u write the code

2 Answers  






What is the difference between a symbolic and an override in executing a PROC?

2 Answers  


Why do you want to specify the REGION parameter in a JCL step?

4 Answers   Kekran Mekran, TCS,


how many max steps can we use in a job? pls answer to my question

9 Answers   TCS,


what is the restart?hopw it is invoked?

1 Answers  


which utility is used a dummy utility?

0 Answers   IBM,


I have a JCL with 100 steps. I want run the Alternate steps in the JCL ( Like 2 ,4,6,8 etc.. ). How can I acheive this scenario? If It is by Cond Parameter can you provide the Condition code for that?

5 Answers   Polaris, Tech Mahindra, UST, Wipro,


what is A-MODE and R-MODE?

2 Answers  


Categories