Answer Posted / shafi syed
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 ? | 25 Yes | 7 No |
Post New Answer View All Answers
What is difference between internal and protected internal in c#?
What are get and set in c#?
What is the advantage of singleton class?
What is the difference between interface and functional interface?
What does return do in unity?
What does get set mean in c#?
Why generics are used in c#?
Is php easier than c#?
Why singleton class is sealed in c#?
Suppose two interfaces have same method, so how will you implement these methods in derive class?
Explain the difference between access specifier and access modifier in c#?
explain the nature of the assembly work?
What is the main method?
Can you call from an inherited constructor to a specific base constructor if both base class and an inheriting class has a number of overloaded constructors?
Does c# support templates?