If i initialize the 01 level variable in array, will it
initialize all the array elements (occurs)?
Answer Posted / chandrababu naidu
we can't use array or table in 01 level item.
(or)
01 name.
02 name2 pic x(5) occurs 10 times.
INITIALIZE NAME.----> means the variable name contains 'spaces'.
Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Which mode is used to operate the sequential file?
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning
what is the difference between COBOL2 AND COBOL390?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
What is an in line perform? When would you use it? Anything else you wish to say about it.
write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
Define cobol?
What is the utilization of copybook in cobol?
What is inspect in cobol ?
How many sections are there in data division in COBOL?
Write a program to explain size error.
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?