Can anyone tell me how to handle the array beyond the limit.
If we have an array or a table which can handle 5000
records but now we have to compensate 20000 records with
the same array? how to handle the situation.

Answers were Sorted based on User's Feedback



Can anyone tell me how to handle the array beyond the limit. If we have an array or a table which c..

Answer / babjee talluri

Use SSRANGE property.

Is This Answer Correct ?    9 Yes 0 No

Can anyone tell me how to handle the array beyond the limit. If we have an array or a table which c..

Answer / ravi singh

use Dynamic Memory allocation

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More COBOL Interview Questions

What are the different rules of SORT operation?

0 Answers  


is it mandatory to give data division before procedure division ? wht happens if i give procedure division first thn data division ? reply soon

2 Answers   Patni,


what is the difference between COBOL2 AND COBOL390?

0 Answers   L&T,


Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries given below: 01 END-OF-FILE-SWITCH PIC XXX. 88 NO-MORE-RECS VALUE "YES". 88 MORE-RECS VALUE "NO". (i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. (ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. (iii) IF NO-MORE-RECS GO TO LAST-PARA. Which are wrong? (a) (i) and (ii) (b) (ii) and (iii) (c) (i) and (iii) (d) all

5 Answers   TCS,


plz any one tell clearly the justify right clause?

1 Answers  






What do you understand by passing by reference and passing by content?

1 Answers  


Why would you use find and get rather than to obtain?

0 Answers  


what are the limitations of Inline Perform?

3 Answers   Zensar,


How do you reference the following file formats from cobol programs?

0 Answers  


have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records...

2 Answers   ITC Indian Tobacco Company, PNP, TCS,


Consider the following: 77 A PIC 9(10) 77 B PIC 9(10) 77 C PIC 9(19) MULTIPLY AB BY B GIVING C Which of the following is true ? (a) The execution of the above may result in size error. (b) The execution of the above will result in size error. (c) The definition of C is invalid resulting in compilation error. (d) No error will be thee and the program would proceed correctly.

4 Answers   TCS,


Move Zeroes to I move 5 to j perform para1 varying I from 10 by -2 until I = 0 display j. para1. Add 5 to j. What’ll be the value after execution of display stmt. A) 35 B) 40 C) 30 D) 25 please explain how?

5 Answers  


Categories