Answer Posted / rajesh
Array can be declared in cobol using the OCCURS clause.
Syntax is,
For one dimensional array,
01 Arrays.
05 Var1 PIC X(10) Occurs 10 times.
For two dimensional array,
01 Arrays.
03 AAA Occurs 10 times
05 BBB Occurs 10 times
07 Value PIC 9(3).
Is This Answer Correct ? | 7 Yes | 5 No |
Post New Answer View All Answers
What is redefine?
Explain how to detect record is locked in cobol/400? What is the solution for that?
Explain how to convert 2010/02/11 to m/dd/yyy.. With string and without string if any other method... Code?
Explain the types of perform?
Define redefine and its syntax?
What is perform?
What is comp?
How to detect record is locked in cobol/400?
Define redefine?
What is the actual use of fillers?
What is the syntax of sort?
Explain the difference between section, paragraph and sentences?
What is input procedure?
What is output procedure?
Define perform?