Answer Posted / malay
redefine clause is used to access same memory storage space by different data items.
ex...
01 a pic x(9).
01 b redefines pic 9(7)v9(2).
tips.
datatype may be different but size of B be same or less then size of A.
better for use same datatype and same size,so that out put should be correct.
| Is This Answer Correct ? | 11 Yes | 7 No |
Post New Answer View All Answers
how do you reference the esds vsam file formats from cobol programs
How to use the same COBOL program in Batch and CICS on lines? explain with an example
What are the different data types in cobol?
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this
How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
How to fetch 1000 error records from VSAM file(Eg: 1000000 records present) while getting SOC7 abend ?
i want a program using by if, evaluate , string, unstring, perform, occurs?
Why did you choose to work with ibm mainframe cobol programming?
What are the different types of condition in cobol and write their forms.
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc
Write a program that uses move corresponding.
What is Pic 9v99 Indicates in COBOL?
How do you define a variable of comp-1 and comp-2?
Explain how to differentiate call by context by comparing it to other calls?
Write a cobol program making use of the redefine clause.