What will happen if we try to create GDG (+2) generaton
instead of (+1) generation?
Answer / varun v
It will create a GDG generation which is one ahead of the
current generation.
Example:
Suppose the current generation is ***.G0001V00
and now instead of creating (+1), you have given (+2) in
your JCL and submitted the job. Now the new generation
created will be ***.G0003V00
Similarly if you give (+4) in the JCL, the new generation
created will be ***.G0005V00
| Is This Answer Correct ? | 19 Yes | 2 No |
consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayedafter the PERFORM is over?assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above since there is a syntex error
How would the number +1234 be stored if a PIC clause of PICTUREs9(4) comp-3 were used?
suppose there is one PF having two members PF1 PF2.PF has one unique key Emp ID.could you tell me uniqueness in PF will be effective across members as well ? assume emp iD 3333 is in member PF1 would same Emp id be exist also in member PF2 ?
01 a pic s9(5) occupies how many bytes ?
What is the Purpose of POINTER Phrase in STRING command in COBOL?
What is the difference between PIC 9.99 and 9v99 in COBOL?
0 Answers SwanSoft Technologies,
how can u find out just by seeing wheater it is main program or sub program ? any two ways to identify reply soon ?
Suppose, file A has 100 records and file B has 500 records. We want to write records common to both A and B into file C and records which are present only in either A or B into another file D. What should be the logic of Cobol program to achieve this?
7 Answers Bank Of America, Mind Tree,
What is difference between com and com3? Eg. s9(4) so what is the memory it will occupy com and com3.
Hi, My interviewer ask A calls B and C calls B, a and b are static c and b are dynamic.what happens if they compile and execute at same time.
what is redefines? where it can be effectively use for the purpose of memory utilization? give an example?
without performing any operations on a file how can i know whether it contains data or not