The maximum number of dimensions that an array can have in
COBOL-85 is ?
Answer Posted / ramesh
7
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......
What is the difference between perform … with test after and perform … with test before?
i need a small 3d program using inline and outline.
What are the different rules to perform a Search?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
What is a scope terminator give example?
input= ,,,, mainframe training ,,, hyderabad .... location.... output1=$ mainframe training in hyderabad location$ output2=**** mainframe training in hyderabad location ****. In this pgn when we give input considering the spaces the output is displayed in this format.Like in the place of ,,,, $ should be displayed likewise.So please helpmeout.
Differentiate between structured cobol programming and object-oriented cobol programming.
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
Can we redefine the field of x(200) to less than 200?
What is report-item in COBOL?
What is the difference between next sentence and continue in cobol programing language?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?