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 |
Which of the following files can be OPENed in all the 4 modes? The four modes are INPUT, I-O, OUTPUT and EXTEND. (a) INDEXED (b) RELATIVE (c) SEQUENTIAL (d) All of the above
What is the difference between comp and comp-3?
Which of the following paragraphs is compulsory in every COBOL program? (a) SPECIAL-NAMES (b) PROGRAM-ID (c) FILE-CONTROL (d) OBJECT-COMPUTER
Write the syntax of a two dimensional array?
a pic s9(4) comp b pic s9(4) comp-3 c ???????????????? d ???????????????? move a to c add a+B giving d. what is ur declaration for c,d?
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
What is the difference between static call & Dynamic call?
I have the requirement to compare the two files and pick up the matching records. File 1. file2 23 32 32 13 34 15 35 36 36 35 43 Get the matching records from this 2 files to out file. how you will do this in cobol program?
15 Answers ADP, Broadridge, CTS, HSBC, L&T, RBS, TCS,
if i am reading a file with some 50000 records and moving to a DB2 table and suddenly the program abends in between, is there anyway i could restart from the exact record at which the job failed once the program restarts.
What is file status 39 ?
Wat is the difference between NEXT and CONTINUE statement in cobol,can any one explain with example.
In a program, there are 2 sections defined say SECTION-A and SECTION-B. There is a paragraph say CALC-INT in both the sections. If this para has to be called directly for SECTION-A, then PERFORM CALC-INT will not work as it is present in both sections. How the PERFORM statement has to be coded here?