what is dynamic array in cobol?
what is the difference b/w array and table in cobol?
Answer Posted / harihar
Difference between:
Array is a multiple occurances of a single data item with
same data type.But table can have more than one data item
with different types of data type respectively.
Dynamic Array:
The dynamic array is nothing but no of occurrances of data
item changes dynamically during the program execution.
| Is This Answer Correct ? | 21 Yes | 1 No |
Post New Answer View All Answers
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
What is the Purpose of POINTER Phrase in STRING command in COBOL?
) how do u code after getting data?
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning
Differentiate between structured cobol programming and object-oriented cobol programming.
Can we redefine the field of x(200) to less than 200?
What is link edit in cobol?
Which is not true about evaluate statement
INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
Why would you use find and get rather than to obtain?
Why occurs cannot be used in 01 level in COBOL?
What is the difference between goback, stop run and exit program in cobol?
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 COBOL programming, what is PERFORM? What is VARYING?