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 |
what is internal sort and external sort ? which is preferable ?
Read a flat file and write last but one (I have n records in a file I have to write n-1th) record in another flat file. Could you please provide me the code in COBOL?
01 a pic 9(9v99) 01 b pic 9(9.99) wht will be the stored vales in both cases
how can we fetch 3 records in cobol pgm any coding pls ?
What is file status 39 ?
is it possible to pass an SQL query inside a jcl which is inside a cobol program?
how do you reference the ksds vsam file formats from cobol programs
what is MSGLEVEL?
A paragraph PARA-X is to be executed when none of the data names A, B and C have value of 1. Which of the following will achieve this ? (a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X (B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X (C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X (C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X
What are the functions like c or c++ in cobol?
how to convert the recors form vsam file to db2 table tru file aid
what is a zoned decimal data type and how it will be stored?