01 a pic s9(5) value '-12345' how it will be stored
Answer Posted / dave
I have verified the Nagaraj Ramammorthy's answer this seems
to be correct...
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Name some of the examples of COBOl 11?
Have you used the sort in your project?for this type of questions any working on real time project give the eg. with real time scenario.
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 is the difference between COBOL2 AND COBOL390?
Name the sections present in data division.
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.
What is the difference between a binary search and a sequential search what are the pertinent cobol?
how do you reference the printer file formats from cobol programs
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.
What is report-item in COBOL?
What are the pertinent COBOL
What is a report item?
What is the local-storage section?
What rules are to be followed while using the corresponding options?
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?