Answer Posted / satish
Abstraction, Inheritance, Encapsulation, Polymorphism
Abstraction : Abstraction is the process of identifying
common patterns that have systematic variations; an
abstraction represents the common pattern and provides a
means for specifying which variation to use.
Inheritance :OOP, a parent class can inherit its behavior
and state to children classes
Encapsulation :Encapsulation allows an object to separate
its interface from its implementation. The data and the
implementation code for the object are hidden behind its
interface.
Polymorphism:Polymorphism allows objects to be represented
in multiple forms
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
Can abstract class have constructor in c#?
What is a clr host?
Tell me the difference between value passing and address passing?
What does return do in unity?
Define method overloading in c#?
What are the different types of constructors in c#?
What is binary search tree in data structure?
What is data annotation in c#?
How can you prevent escaping on backslashes in C# with string definitions?
Why main is static in c#?
Is there a way to force garbage collection?
How do you sort an array in c#?
What are the principles of delegation?
What is different between Static Constructor and Private Constructor?
What is a race condition?