S9(5)V9(2) occupies how many bytes memory ?
Answers were Sorted based on User's Feedback
Answer / naveen87ginjupalli
S9(5)V9(2) occupies 7 bytes of memory.
Here V doesn't occupies any space it assumes internally.V is
the assumed Decimal point, it is used to store the Decimal
values.
| Is This Answer Correct ? | 43 Yes | 10 No |
Answer / saikiran
7 bytes,sign does n't occupy any space internally.
| Is This Answer Correct ? | 11 Yes | 3 No |
Answer / ronaldo luyo
I have a file with a field with s9(3)v9(4) and i need to
load with LOAD UTILITY DB2 v9. What data db2 type correspond
to this case in the crate table and load utility DB2 V9 FOR ZOS.
| Is This Answer Correct ? | 1 Yes | 2 No |
it occupies 7 bytes as v doesn't occupy any storage space it is a assumed/implied decimal point.
| Is This Answer Correct ? | 0 Yes | 1 No |
Consider the following code: 77 A PIC 99V99 VALUE 55.35 77 B PIC 99V999 VALUE 32.754 ADD B TO A ON SIZE ERROR DISPLAY "ERROR!!!" What will be the result ? (a) A=88.10, B=32.754 (b) A=87.00 B=32.754 (c) A=87.10 B=32.754 (d) ERROR!!! will be DISPLAYed on the screen.
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
Have you code any new programs in COBOL ? What is the functionality of the programs?
What is the difference beetween Arrays and Tables in Cobol? please dont give the answer that arrays in cobol terminology is called tables......
if someone is using my file,how can i find which user id is using?
copy 100 records without using ibm utilities
where do we use dyanamic call ? and where do we use static call pls give any example pls ?
What are the functions like c or c++ in cobol?
how we can edit records in vsam data set and non vsam data sets
what is lrec=f,what is difference between f,fb,v,vb?what is default value?how do we came to know that records are in f,fb,v,vb?
Write a program to explain size error.
consider the following PROCEDURE DIVISION entry OPEN EXTEND IN-FILE identify the correct statement a.organization of IN-FILE is sequential and records can be added in the beginning b.organization of IN-FILE is sequential and records can be added in the end c.organization of IN-FILE is indexed and records can be added in the beginning d.organization of IN-FILE is indexed and records can be added in the end