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
How you apply a theme in whole application in .Net?
Explain Different kinds of methods?
How do you define the lease of the object in .net?
What do you mean by Code Access Security in .NET?
What are pdbs?
Please explain what is the difference between a class and an object?
What is connection pooling and how do you make your application use it?
What is the difference between encrypting a password and applying a hashing?
What is lazy initialization?
When we use windows api in .net is it managed or unmanaged code?
How to get the number after decimal point in .net?
What are the improvements made in cas in .net 4.0?
Explain what is an application domain?
How anonymous method is different from a lambda expression?
Compare & contrast rich client (smart clients or windows-based) & browser-based web application