Answer Posted / guest
there are four divisions in cobol
identification division
environment division
data division
procedure division
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
) How do u handle errors in BMS macro?
What is rmode(any) ?
Why is it necessary that file needs to be opened in I-O mode for REWRITE?
What is the local-storage section?
how do you reference the ksds vsam file formats from cobol programs
What is amode(24), amode(31), rmode(24) and rmode(any) (applicable to only mvsesa enterprise server) ?
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.
Mention the guidelines to write a structured cobol program?
What are the different rules to perform a Search?
I have a File that has duplicate records. I need only those records that occur more than thrice.?
What are 77 levels used for?
what is s000 u4087 error? please give the all error codes in cobol,jcl.
Which mode is used to operate the sequential file?
What rules are followed by the search verb.
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?