C#.NET INTERVIEW QUESTION & ANSWERS
DOT Net
TAGS
51. | What are the basic concepts of object oriented programming? |
---|---|
|
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. |
53. | What is another name for overloading? |
---|---|
Ad-hoc polymorphism is another name for overloading. |
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. |
55. | Do events have return type? |
---|---|
No, events do not have return type. |