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
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 |
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 |
Answer / sowmya
step2 will be executed.the steps after the step2 will be by-
passed
| Is This Answer Correct ? | 1 Yes | 9 No |
Explain concatenating datasets?
how many members can be created inside a single pds?
how can i use the parameters decalred in main pgm in sub pgm
Is condition checking possible in jcl? If yes, how?
Differentiate between the joblib and the steplib statements?
if time parameter is not coded on the job card and job step then what is the default time assigned to the entire job and for each step in the job by the systyem ?
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
JCL Example: // //RUNJCL JOB CLASS=5,MSGCLASS=6,NOTIFY=&SYSUID //STEP01 EXEC PGM=IEFBR14 // .. .. If this JCL will run or it'll throw the ERROR?
Using DELETE what type of file can you delete? a)SEQUENTIAL FILE B)INDEXED FILE C) D) Some options were there..i cant remember
what is a steplib
if we give two job cards in a single what happens
What happens if both JOBLIB and STEPLIB is specified ?