FeedBack Form

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

C#.NET INTERVIEW QUESTION & ANSWERS

51. What are the basic concepts of object oriented programming?
 
    It is necessary to understand some of the concepts used extensively in object oriented programming.These include
  • Objects
  • Classes
  • Data abstraction and encapsulation
  • Inheritance
  • Polymorphism
  • Dynamic Binding
  • Message passing.
Your Name Your Email-ID
Your Answer
 
52. What is an interface class?
  It is an abstract class with public abstract methods all of which must be implemented in the inherited classes.
  Posted by Meraj ahmad. (Feb 25, 2014)
 

Its kind of entity whose methods are public and abstract class by default.

Your Name Your Email-ID
Your Answer
 
53. What is another name for overloading?
  Ad-hoc polymorphism is another name for overloading.
Your Name Your Email-ID
Your Answer
 
54. What is the difference between value type and reference type?
  Value types are stored in the Stack.
Examples : enum , float, int, long
Reference types are stored in the Heap.
Examples : class, interface, object, string.
Your Name Your Email-ID
Your Answer
 
55. Do events have return type?
  No, events do not have return type.
Your Name Your Email-ID
Your Answer