What is usage pointer in cobol?

Answers were Sorted based on User's Feedback



What is usage pointer in cobol?..

Answer / nidhi

1. Its declared without a pic clause. Only "usage is pointer" is declared for the variable.
2. Its a 4 byte variable used to hold address of variables in linkage sectio only.
3. "seT ADDRESS OF VAR-LINK-SEC TO POINTER-VAR" is how we get address into pointer var.

Is This Answer Correct ?    1 Yes 0 No

What is usage pointer in cobol?..

Answer / varalakshmi

You can use pointer data items when you want to accomplish limited base addressing,
particularly when you want to pass and receive addresses of a variably located record
area.

Is This Answer Correct ?    0 Yes 0 No

What is usage pointer in cobol?..

Answer / sriram

Declare a pointer as an elementary data item bearing the
USAGE IS POINTER clause, with no PICTURE. E.g:
05 EXAMPLE-P USAGE IS POINTER.

EXAMPLE-P is a four-byte field which can store the address
of any data item. Unless you're interfacing COBOL to
Assembler or something, you really don't care what the
pointer looks like internally. It's just a piece of magic
which enables you to access the thing it's pointing to.



Please let me know if I am wrong

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More DB2 Interview Questions

How to restart a DB2 program?

0 Answers   Cognizant,


Hi this is sures. i need to practice the ibm mainframes.could u telme how can i get userid from IBM.how much cost they will collect for one user id.can send me the details please.thanq

2 Answers  


What does it mean if the null indicator has -1, 0, -2?

1 Answers  


What is a DBRM, PLAN ?

3 Answers  


What does the sqlcode of -818 pertain to?

3 Answers  






How can the firstname and the lastname from the emp table be concatenated to generate complete names?

0 Answers  


What is multi row fetch in db2?

0 Answers  


How can you display the current date & current time ?

1 Answers   Cap Gemini,


How do I optimize a query in db2?

0 Answers  


What is meant by a unit of recovery?

1 Answers  


What is a dbrm in db2?

0 Answers  


How to view db2 table structure?

0 Answers  


Categories