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 |
01 a pic 9(3) value is 123 01 b pic 9(6) move a to b wht will be the value ? and 01 a pic x(6) value is abc 01 b pic x(3) move a to b wht will be the value ?
Define static linking and dynamic linking.
i need a program by giving input as a abcd in any randem order but i need a output as 1234 related to abcd. i.e,. a for 1,b=2,c.....etc..
WHY LRECL NEEDS TO BE 4 EXTRA THEN THE COBOL FILE LENGTH & WHAT IT CONTAIN IN THAT LENGTH
BY seeing a program how can we say that it is static call or dynamic call
How to increase the logical record length of existing PS file?
what is the result of the following? DIVIDE A INTO B GIVING C. a.C=A/B b.the reminder of B/A is stored in C c.C=B/A d.the reminder of A/B is stored in C
what happens if parmparameter passes zero bytes to the program
Consider the following COBOL entries: 05 X PIC 99 VALUE 10. SUBTRACT 20 FROM X. The resultant value of X wil be
How to read records which is in sequential file in reverse order ? Exp. 1 2 3 4 5 . i want 5 4 3 2 1?please clear my doubt any one
Describe the difference between subscripting and indexing ?
how to access vsam files in cobol and how to differentiate that this is ESDS file