What is the reference modification.
Answers were Sorted based on User's Feedback
Answer / santosh khot
Reference modification is retrieving or Modifying substring
of a string. if Reference modification has a negative value
then Abend Code is soc4, So be care full while using
reference modification
Syntex is Move String(First position, Length) to Var-1.
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / ts nithiyanandan
Reference modification is nothing but moving the part of
value of dataname to other dataname.
01 a pic 9(10).
01 b pic 9(10).
move a(4:5) to b.
i.e., moving from 4th byte to 9th byte to dataname b.
from 4th to 9th is length of 5 bytes.
| Is This Answer Correct ? | 10 Yes | 5 No |
How many bytes will be allocated for the following record description entries? 01 REC-A. 05 A PIC S9(4). 05 B PIC XXXBXXX. 05 C PIC ____9.99. 05 D PIC S9(5) COMP-3. 05 E PIC 9(3) COMP.
16 Answers IBM, TCS,
What is binary search?
which is faster either static call or dynamic call ? and specify the reasons for it ? reply fast
How to Pass table from a cobol program to another cobol program and how to use that table in called program
HELLO FRIENDS, THIS IS JANARDHAN.GADIRAJU, I FACED ONE INTERESTING QUESTION IN COBOL, THAT IS WHAT ARE THE VALUES WE CAN SEE IN HIGHVALUES AND LOWVALUES, CAN U PLEASE GIVE ME THE ANSWER
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
What is 88 level used for ?
There are two flat files one having 10 records and other having 5 records. write a cobol pgm to find the duplicate records(matching records)from both files.
What will happen if we generate GDG +2 version instead of +1 version?
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
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?