how array can be declare in cobol?

Answer Posted / ashish

we declare table as
01 SALES-OF-YEAR-2010 OCCURS 12 TIMES indexed by YY.
02 MONTH PIC A(10).
02 NUM-OF-UNITS PIC 9(7).
02 PRICE-OF-UNIT PIC 9(5).

and we can call table elemnts as follows

procedure division.
.......
.......
MOVE 1 TO YY.
DISPLAY MONTH(YY).

Is This Answer Correct ?    9 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Define sort?

573


Explain the difference between section, paragraph and sentences?

500


Explain the input procedure?

527


What are fillers? What is the actual use of fillers? With mall/simple example?

542


Explain the input procedure and output procedure?

510






Define redefine and its syntax?

533


How to detect record is locked in cobol/400? What is the solution for that?

517


What are fillers?

518


How to detect record is locked in cobol/400?

530


What are the types of perform?

563


What is output procedure?

533


What is perform?

527


Explain the syntax of redefine?

512


What is sort? And its syntax?

661


Define perform? And its types?

496