How encapsulation and abstraction defined/used in C#.NET.
Answer Posted / siva prasad
encapculation: binding the data members and member functions
together is called
encapculation. encapculation is done through class.
abstraction: hiding the implementaion details form usage or
from view is
called abstraction.
ex:
int x;
we don't know how int will internally work. but we know int
will work.
that is abstraction.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Explain about accessibility modifier 'protected internal'?
What is delimiter in c#?
What are the different types of delegates?
Define a strong name in .net?
What is datatable and dataset in c#?
What .exe means?
What is generic delegate in c#?
Why can’t struct be used instead of class for storing entity?
Can var be null c#?
What is default access modifier for class in c#?
What is a partial class in c#?
What is the difference between finalize() and dispose() methods?
Is list ienumerable c#?
Is an interface a type c#?
What is a Managed Code??