can we declare s9(9)v9(9) in cobol ? if yes how many bytes
it will occupy ?(urgent plz answer it)
Answers were Sorted based on User's Feedback
Answer / y@$w@nth
s9(9)v9(9)
Here v stands for assumed decimal point so it will occupy
only 18 bytes(9+9)...if instead of s9(9)v9(9) it is coded as
s9(9).9(9) then it is going to occupy 19 bytes ((9+9)+1)
the extra 1 byte for decimal point .........There is no way
of occupying 20 bytes storage.
| Is This Answer Correct ? | 47 Yes | 5 No |
Answer / jaganmohanreddy
ya we can code like this it will occupy 18 bytes only s9(9)
v9(9) v is for assumed decimal
| Is This Answer Correct ? | 17 Yes | 1 No |
Answer / siddu reddy
yes, 18 bytes it will occupy. here v is assumed decimal
point,it doesn't occupy any space
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / ramesh.p
yes, we can declare it.it is a display usage.it will occupy one byte for each character so,there are 18 characters there (9+9) .so it will occupy 18 bytes...
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / rajagopal
For the above question the answer is 19.Because sign is
allocated automatically and in cobol user defined value
should not exceed 18.so it'll take 19bytes including sign
without giving any error.but if you give
s9(9).9(9),definitely it'll give error because it's user
defined length is 19 and with sign it'll take 20 bytes and
it'll definitely throw an error.Anyway if you give
parm.cobol=arith(extend) in compile JCL both the above cases
will work.
| Is This Answer Correct ? | 6 Yes | 5 No |
Answer / paddu
Yes,we can declare.s9(9)v9(9) will occupy 18 bytes. the
maximum bytes are in any comp field item is 18bytes.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / karthik
NO IT CANNOT BE. THE MAXIMUM ALLOWED DIGITS IS 18 ONLY
| Is This Answer Correct ? | 8 Yes | 10 No |
how to access vsam files in cobol and how to differentiate that this is ESDS file
Hi................... I have records like this aaaa cccc bbbb And i want output like this bbbb cccc aaaa How can it possible ?. Note:Please make sure records are in unsorted order. somebody plzzz help me.
wirte a pgm in using files in which we hav 10 ,20,30 40...100 records in inputfile and i want them to be send to outputfile in reverse order. PLZ HELP ME OUT .........THIS IS A RECENT QUESTION IN IGATE..
2)Where the Plan is located in CICS-DB2?
what is the minimum number of lines a Cobol program should have to successfully compile and run
what is SYNCHRONIZATION?
what is the basic concept of mainframe? what knowledge is needed for learn this mainframe?
What is the difference between CONTINUE & NEXT SENTENCE ?
how can count the number of character in feild ?? suppose for instance i have a feild with value ' rajesh sarkar' then how can v count the number of characters whitout spaces...........
What do you do to resolve SOC-7 error?
What is an explicit scope terminator?
I have dataset DS1 which has records say 1 2 3 4 5 ... ... etc And also I have second dataset DS2 whcih has records 1 3 4 5 6 8 .. ... Both the files are sorted and now I want to compare these files and write it into the third files if the records are matching.