01 a pic 9(9v99)
01 b pic 9(9.99)
wht will be the stored vales in both cases
Answer Posted / venkat
i think question is 01 a pic 9(9)v99 --it's occupy memory space is -11bites
&01 b pic 9(9).99--it's occupy memory space is -12bites
Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Can a Search can be done on a table with or without Index?
How to print 10 to 1 if the input have only 10 digit number?
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.
What is the difference between PIC 9.99 and 9v99 in COBOL?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
What the difference is between continue and next sentence?
What is length is cobol?
What is the difference between comp and comp-3?
how do you reference the ksds vsam file formats from cobol programs
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning
What is the difference between next sentence and continue in cobol programing language?
How to know whether the module is dynamical or statistical?
What is the utilization of copybook in cobol? Could we utilize a similar copybook?
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 binary search and sequential search?