FeedBack Form

Your Name :
Your Email :
Your Location :
Your Message :
   
FeedBack

OOPs INTERVIEW QUESTION & ANSWERS

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.
Your Name Your Email-ID
Your Answer
 
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.
Your Name Your Email-ID
Your Answer
 
18. What is an accessor?
  An accessor is a behavior that gives you access to an object’s internal data.
Your Name Your Email-ID
Your Answer
 
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.

Your Name Your Email-ID
Your Answer
 
20. What is a delegate?
 
  • Delegate is a class that can hold a reference to a method or a function.
  • Delegate class has a signature and it can only reference those methods whose signature is compliant with the class.
  • Delegates are type-safe functions pointers or callbacks.
Your Name Your Email-ID
Your Answer