What is Redefines clause?

Answers were Sorted based on User's Feedback



What is Redefines clause?..

Answer / a.roselin

Redefine Clause represents the same storage locations by
diffent data types

Is This Answer Correct ?    62 Yes 3 No

What is Redefines clause?..

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

What is Redefines clause?..

Answer / sudhakar koppavarapu

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

What is Redefines clause?..

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

What is Redefines clause?..

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

What is Redefines clause?..

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

What is Redefines clause?..

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

What is Redefines clause?..

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

Post New Answer

More COBOL Interview Questions

can we use COPY statement in w-s section? how?

3 Answers  


Can we access the a[0] in the array ?

6 Answers   DCL, IBM,


how can u pass the values into db2 values from cobol ?

3 Answers   CTS,


What is the difference between performing a SECTION and a PARAGRAPH?

5 Answers   Accenture, Patni,


Can you call an OS VS COBOL pgm from a VS COBOL II pgm ?

3 Answers   Microsoft,






input:-AABBCCDDEFGHIIJ output:- ABCDEFGHIJ Here in input we hav the duplicate characters i.e repeating characters.SO we should eliminate the duplicate characters and should display the output in ascending order.

6 Answers  


Explain how you can characterize tables in cobol?

0 Answers  


when iam reading a flat file which has 100 records through cobol program when iam reading 50th records it gets abends .. so when i run the program again it should read from 50th record .where it got abened ? how it is possible

1 Answers   Patni,


Which of the following paragraphs is compulsory in every COBOL program? (a) SPECIAL-NAMES (b) PROGRAM-ID (c) FILE-CONTROL (d) OBJECT-COMPUTER

4 Answers  


hi friends,can any one post the ibm mainframe inteqview questions for 1year exp candidate,for itc infotech interview?. have any body attended for this in the past?...

1 Answers   ITC Infotech,


sample code for read a 2nd record from last in flatfile how can do?

4 Answers   iNautix,


what is the coding difference between COBOL and CICS.

8 Answers   Cap Gemini,


Categories