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 |
how do you reference the esds vsam file formats from cobol programs
01 A pic 9(100) find record length of it
plz,could any one tell me? what about EBCDIC in cobol?briefly?
Can JUSTIFIED be used for all the data types?
1.What is the default print format in cobol?
in a indexed file what is procedure for read the records from 12 to 18. please give the code example
What is the difference between Perform para and perform asaection in cobol?
study the data discriptions and answer the questions given below i)01 ORDER RECORD 05 OUT-HEADER PIC X(50) 05 ITEM-COUNT PIC 99 05 OUT-ITEM PIC X(20) OCCURS 1 TO 20 DEPENDING ON ITEM-COUNT ii)01 NAME-AND-ADDRESS 05 N-AND-A-LINE OCCURES 5 05 LINE-LENGTH PIC P9 05 N-AND-A-CHAR PIC X OCCURS 1 TO 20 DEPENDING ON LINE-LENGTH iii)01 SALES-LIST 05 SALESMAN-COUNT PIC 99 05 SALES PIC 9(6) OCCURS 1 TO 100 DEPENDING ON SALESMAN-COUNT iv)01 ORDER-RECORD 05 NO-OF-BRANDS PIC 99 05 BRAND-PURCHASED OCCURS 1 TO 15 DEPENDING ON NO-OF-BRANDS which of the following is true? a.i) and iii) are valid b.i) and iv) are valid c.i) and iii) are not valid d.all are valid
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length
if you code move high-values to variable,can you move it into numeric variable or alphanumeric variable?
How do you submit JCL via a Cobol program?
What is CALL statement in COBOL?