OOPs concept ?



OOPs concept ?..

Answer / 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

More C Sharp Interview Questions

What is parallel programming in c#?

0 Answers  


What is the difference between mobile application and desktop application?

0 Answers  


What is iqueryable in linq?

0 Answers  


Is hashset serializable c#?

0 Answers  


Illustrate serialization?

0 Answers  






interface a { Method1() Method2() } class b: a { override Method1() override Method2() } what will happen & why?

5 Answers  


What is difference between a function and a method?

0 Answers  


What is data types in c#?

0 Answers  


How do I unload an assembly?

0 Answers  


What is a console?

0 Answers  


Why do we use threads in c#?

0 Answers  


What is generic and non generic collections in c#?

0 Answers  


Categories