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
What are the advantages of clr procedure over t-sql procedure?
What are generic types?
Why do we need to override in c#?
What is deadlock in c#?
What is continue in c#?
What is throw in c#?
If I have more than one version of one assemblies, then how'll I use old version (how/where to specify version number?)in my application?
What is null propagation c#?
Why would you use a class property in c#?
What is namespace in oops?
What do u meant by "SBI" of an object?
Explain the role of Garbage collector and its generations?
What is callback in c#?
What is the use of getcommandlineargs() method in c#.net?
Can a abstract class have a constructor?