Can u explain me What is encapsulation?
Answer Posted / manikanta.srinu
Wraping(Binding) of data in a single unit.
Encapsulation is combines one or more information into a
component.
* You hide the data for security such as making the
variables as private, and expose the property to access the
private data which would be public.
So, when you access the property you can validate the
data and set it.
Eg 1: Capsule is mixed with one or more medicine and packed
into the tube. so its related and acting in two moducles.
EX:public class Demo
{
private int _mark;
public int Mark
{
get { return _mark; }
set { if (_mark > 0) _mark = value; else _mark = 0; }
}
}
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
Explain what does managed mean in the .net context?
explain the states of a window service application?
I'm having some trouble with cas. How can I troubleshoot the problem?
what is prototype design pattern in .net
What is assemblies in .net?
What's singleton activation mode in .net?
How to create a key pair in .net?
Explain the purpose of Remoting in .NET?
What is the difference between asp.net and asp?
What is an exe and a dll?
Explain what are possible implementations of distributed applications in .net?
How do you instantiate a complex number?
One user deleted one row after that another user through his dataset was trying to update same row. What will happen? How will you avoid this problem?
What is an assembly? What are the different types of assemblies?
Is there any thread in our .net programs?