What is the difference beetween Arrays and Tables in Cobol?
please dont give the answer that arrays in cobol
terminology is called tables......
Answers were Sorted based on User's Feedback
Answer / obul
Storing the similar type of data in contiguous memory
locations is called an Array and storing the different type
of data in contiguous memory locations is called Table in COBOL.
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / ravendra singh
we can use subscript with array but in the other hand with
table we can use indexing. we can perform search with array
by using subscript but with the table we can use both
subscript and the indexing searching an element into table.
| Is This Answer Correct ? | 0 Yes | 0 No |
study the following code 01 A1 05 B PIC 99 05 C PIC X(4) 01 A2 05 B PIC 99V99 05 C PIC A(4) pick out the valid statement from the following a.A1 and A2 can not have sub-ordinates b.A1 and A2 can have the same sub-ordinates but must have same PIC clause c.there is nothing wrong d.A1 and A2 can have same sub-ordinates provided they are not at 01 level
What rules are to be followed while using the corresponding options?
What is Comm?
2 Answers IBM, Kemper Corporation,
What are options have been removed in COBOL 11?
What do you do to resolve SOC-7 error?
In an array processing what is the thing that can be done by using subscripts but not by using index
Have you used comp and comp-3 in your project? And how?
i need the code for this program in cobol. 2 + 1 = 3 4+3=7 6+5=11 8+7=15 10+9=19
When the working storage variables get allocated? a.At Compile time b.At starting of the run time c.At end of the run time. d.None of these
example for sub strings ? and refernce modifications whit output pls
0 Answers College School Exams Tests, IBM,
What is cobol?
consider the following FD FILE-1 01 REC-1 PIC X(80) ...... WORKING-STORAGE SECTION 01 W-REC PIC X(90) ........ PROCEDURE DIVISION FIRST-PARA ....... READ FILE-1 INTO W-REC AT END MOVE 1 TO EOF-FLAG which of the following is true with respect to the above? a.REC-1 will contain nothing and W-REC will contain the contains of the record read b.REC-1 and W-REC contain the same data c.syntex is invalid and error will occur d.REC-1 and W-REC must be of same size