Cobol Question:

How do you define a table/array in COBOL?

Tweet Share WhatsApp

Answer:

ARRAYS. 05 ARRAY1 PIC X(9) OCCURS 10 TIMES. 05 ARRAY2 PIC X(6) OCCURS 20 TIMES INDEXED BY WS-INDEX.

Download Cobol PDF Read All 110 Cobol Questions
Previous QuestionNext Question
What is the difference between index and subscript?What does the IS NUMERIC clause establish?