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 |
What is parallel programming in c#?
What is the difference between mobile application and desktop application?
What is iqueryable in linq?
Is hashset serializable c#?
Illustrate serialization?
interface a { Method1() Method2() } class b: a { override Method1() override Method2() } what will happen & why?
What is difference between a function and a method?
What is data types in c#?
How do I unload an assembly?
What is a console?
Why do we use threads in c#?
What is generic and non generic collections in c#?