What is the maximum length of a field you can define using COMP-3 in COBOL?
Answer Posted / sruthy
18 decimal digits
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do we get current date from system with century in COBOL?
how to move the records from file to array table. give with code example
What are literals?
How to fetch 1000 error records from VSAM file(Eg: 1000000 records present) while getting SOC7 abend ?
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
What is rmode(any) ?
What are the different open modes available in cobol?
What is static and dynamic call in cobol?
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
what is the use of outrecord?
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
How can we find that module can be called – whether DYNAMICALLY or STATICALLY?
In which area will you utilize 88 level items in cobol?
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?