What will happen if we move SPACES to numeric field and
ZEROES to alphabetic field?
Answers were Sorted based on User's Feedback
Answer / varun v
1) Move Spaces to Numeric field:
Here program would give compilation error saying Spaces
to Numeric integer did not follow the "MOVE" statement
compatibility rules.
2) Move Zeroes to Alphabetic field:
Would work fine with Movement of Zeroes to the
Alphabetic field.
| Is This Answer Correct ? | 4 Yes | 5 No |
How to retrive the 9th records out of ten records using the cobol program ?
01 xxx pic 9(4). 01 yyy pic 9(6). move 123456 into yyy. move yyy to xxx. display yyy. what would be the value of yyy
What is JOBLIB and STEPLIB in JCL? what is the purpose of using it?
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.
How many variables can be declared in w-s section.?
what is amode(24), amode(31), rmode(24) and rmode(any)?
I have a field with data type X(10). I want to perform arithmetic operation on this field? I tried doing it by moving the value into a numeric field. but it didn't work out. I am getting a S0C7 abend. Pls let me know if there is any way of getting this done?
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.
how to pass 100 to s9(4) how r they inserted ?
how to refer the data field?
How to use the same cobol program in Batch and CICS onlines ? Please expalin with an example. Thanks in advance.
how do you reference the rrds file formats from cobol programs