The maximum number of dimensions that an array can have in
COBOL-85 is ?
Answers were Sorted based on User's Feedback
Answer / kumar
cobol85 will support up to 7 min.
cobol74 will support only 3 dim.
| Is This Answer Correct ? | 15 Yes | 1 No |
Answer / vivek a r
Cobol-85 has 7 dimensions
and Cobol-84 got 3 dimensions
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / satya sivaji
The maximum number of dimensions allowed in cobol is 7.
| Is This Answer Correct ? | 10 Yes | 5 No |
What is the maximum length of a field you can define using COMP-3?
4 Answers Complex System, Infosys,
can we display comp-3 variables. if we want to display what we have to do . give me one example
Mention the guidelines to write a structured cobol program?
How do you compile cobol program..?
When search all is used in cobol program without sorted input data?
6 Answers CGI, Principal Finance,
I have a field with data type X(10). I want to perform arithmetic operation on this field? I tried doing it by moving the value into a numeric field. but it didn't work out. I am getting a S0C7 abend. Pls let me know if there is any way of getting this done?
Consider the following code: 77 A PIC 99V99 VALUE 55.35 77 B PIC 99V999 VALUE 32.754 ADD B TO A ON SIZE ERROR DISPLAY "ERROR!!!" What will be the result ? (a) A=88.10, B=32.754 (b) A=87.00 B=32.754 (c) A=87.10 B=32.754 (d) ERROR!!! will be DISPLAYed on the screen.
Which mode is used to operate the sequential file?
what happens if parmparameter passes zero bytes to the program
Why we need to use redefine clause when we can define the variable seperately... what is actual need....
How to resolve the soc4 and soc7 errors?
Without using move verb how to move one variable to another.