What is Redefines clause?
Answers were Sorted based on User's Feedback
Answer / a.roselin
Redefine Clause represents the same storage locations by
diffent data types
| Is This Answer Correct ? | 62 Yes | 3 No |
Answer / roopa sharma
two or more data items can use same working storage area by
redefining a storage area
| Is This Answer Correct ? | 24 Yes | 3 No |
Redefines clause allows a programmer to give different data
descriptions to the same area of storage.
syntax:
LevelNumeber Identifier1 REDEFINES identifier2.
01 A PIC X(7).
01 B REDEFINES A PIC 9(5)V9(2).
| Is This Answer Correct ? | 24 Yes | 8 No |
Answer / somnath
Two or more data items can use same working storage area by
redefining a storage area.
| Is This Answer Correct ? | 12 Yes | 2 No |
Answer / krishna
Allowcation of more than one data items in a single memory
location.
Ex:
01 a pic x(9).
01 b redefines a pic x(7).
Rules for Redefines
1. Should be different datatype and size
2. Redefined item should not contain value clause
3. Redefing item cantain redefined item
4. Redefines can't write in 66 and 88 level numbers
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / 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 |
Answer / bhanupriya
the REDEFINES clause allows you to use different data description entries to describe the same computer storage area
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / prakash shrivastava
Redifines clause is used to allocate more than one data in
same memory location....
ex:- 77 a pic 9(2).
77 b redefines a pic 9(2).
| Is This Answer Correct ? | 20 Yes | 31 No |
Did anybody attend the walkin of TCS on 31st July in Gurgaon for any technology,If u have completed 3 round i.e till the HR round,have u received the Offer letter yet? Please let me know.Thanks.
1)what is the maximum limit for occurs? Eg: 01 A PIC X(10) OCCURS N TIME. What is the max value for N?
i have a sequencial file contains multiple records, i want to extract one row which contains various fields like order number,date,warehouse,.ect.. in to the another file by accepting the order number from jcl. how can i do it. pls help me..
what is difference between the sysabend and userabend?
What is IMPACT analysis?
how do you reference the printer file formats from cobol programs
study the following code 01 A1 05 B PIC 99 05 C PIC X(4) 01 A2 05 B PIC 99V99 05 C PIC A(4) pick out the valid statement from the following a.A1 and A2 can not have sub-ordinates b.A1 and A2 can have the same sub-ordinates but must have same PIC clause c.there is nothing wrong d.A1 and A2 can have same sub-ordinates provided they are not at 01 level
What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?
Write a program to explain size error.
Can anyone explain me CALL procedure in COBOL.Does it carries similarities like call by reference in C.
What compiler option would you use for dynamic linking?
What are the divisions in a cobol program?