How many sections are there in data division?.
Answer Posted / vampire
Data divison 6 sections
Linkage section
report secion
message/communication session
working storage section
screen section
file section
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
How you can characterize tables in cobol?
In COBOL, what is the different between index and subscript?
What are the rules of the move verb?
what is amode(24), amode(31), rmode(24) and rmode(any)?
Difference between cobol and cobol-ii?
In which area will you utilize 88 level items in cobol?
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
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 external and global variables in COBOL?
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
When is inspect verb is used in cobol?
how do you reference the variable block file formats from cobol programs
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.