OOPs INTERVIEW QUESTION & ANSWERS
DOT Net
TAGS
16. | How do objects communicate with one another? |
---|---|
Objects communicate by sending each other messages. Calling a message is synonymous with making a method or procedure call. |
17. | What is the use of base keyword? |
---|---|
The keyword base is used to access members of the base class from inside a derived class. |
18. | What is an accessor? |
---|---|
An accessor is a behavior that gives you access to an object’s internal data. |
19. | Define Inheritance? |
---|---|
Inheritance is deriving the new class from the already existing one. |
Posted by Aswini Aluri. (Nov 20, 2013) | |
It used for code redundendcy. |
20. | What is a delegate? |
---|---|
|