how do you reference the ksds vsam file formats from cobol programs
No Answer is Posted For this Question
Be the First to Post Answer
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,
a pic s9(4) comp b pic s9(4) comp-3 c ???????????????? d ???????????????? move a to c add a+B giving d. what is ur declaration for c,d?
consider the fallowing 77 stat pic 9. 88 male value 1,2,3. 88 female value 4 through7. what will be the value of stat a) set male to true. b) set female to true.
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
In EBCDIC, how would the number 1234 be stored?
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
How many bytes will be allocated for the following record description entries? 01 REC-A. 05 A PIC S9(4). 05 B PIC XXXBXXX. 05 C PIC ____9.99. 05 D PIC S9(5) COMP-3. 05 E PIC 9(3) COMP.
16 Answers IBM, TCS,
How many bytes S(8) comp field occupy and its maximum value?
How to delete the records of a dataset through cobol programme?We should not use jcl utilitities like IDCAMS.
Can we redefine the field of x(200) to less than 200?
what is the coding difference between COBOL and CICS.
When and how can we use index & subscript ?