what is the difference between occurs and occurs depending
on? i dont think so there is the difference in
storage..then why we should use occurs depending on?
Answer Posted / steve dipaula
Okay folks, I know it has been a while since this was posted
but here is the answer. (1) The memory allocation is the
same whether or not the depending on clause is used period!
(2) The reason for making it a variable length table is for
sorting purposes. More specifically Binary Searches! For a
large table it will have to split the halves more time that
if you have a smaller table. So when loading the table you
keep count of the number of entries at the end of that
process you can set the depending on variable to that value.
Then when the search is executed it will see the table size
as the exact amount of entries, not the full number of
allocated slots.
Example:
Table is defined to have 100 occurrences. And you load 35
items in the table. If you do a search-all (binary search)
it may have to be tested 7 time before finding the item you
are looking for.
Same scenario 100 occurrences, 35 items loaded. But the
depending on variable is set to 35. It might only have to
search 6 times. I know the difference is negligible but in
a much larger case the difference would be quite significant.
| Is This Answer Correct ? | 19 Yes | 1 No |
Post New Answer View All Answers
What is the use of intialize verb?
What is the LINKAGE SECTION used in COBOL?
Name the sections present in data division.
What are different data types in cobol?
Explain how you can characterize tables in cobol?
What are the cobol coding sheets?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
what is amode(24), amode(31), rmode(24) and rmode(any)?
how to refer the data field?
What is amode(24)?
What is a report item?
how do you reference the rrds file formats from cobol programs
What is the difference between comp and comp-3?
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.
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.