whst is encapsulation?when u encpsulate actually while
devoloping code?
Answers were Sorted based on User's Feedback
Answer / rajmohan
The Wrapping up of Data and functions into a single unit is
Called Encapsulation.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / pardhu
The binding up of data & code into a single unit is called
as ENCAPSULATION
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / a.jyotsna
Encapsulation is the mechanism that binds together code and
the data it manipulates,
and keeps both safe from outside interference and misuse
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / dsr
Encapsulation is a mechanisum,thet binds together data and
code. for example:Bean
In bean, all the variables are private. we can't access
that variables with the help of class object.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / jag bhushan
Encapsulation means wrapping of data and the accessing
methods in one unit and hiding the data from outside world.
the data can be accessed only by using getter/setter method
so that no one can set a wrong value for a vriable. like
weight can not be less than zero. so if anyone want to set
the weight, it have to set only be using getter/setter.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dileep
hide the date of the class from outside environment and
providing the only necessary data and clubbing both code
and data togather.................
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / dhawal
Encapsulation is process of hiding data
for example if access specifier we are using for accessing
class is private then only that class object can access the
methods and variables in that class
| Is This Answer Correct ? | 0 Yes | 1 No |
Which is better 64 bit or 32 bit?
What is boolean example?
Can main() method in java can return any data?
strings in java are objects.why?
What is difference between jdk,jre and jvm?
Differentiate between postfix and prefix operators in java.
How the elements are organized in CardLayout?
can anyone explain me the concept of autoboxing?
What is java algorithm?
How do you insert a line break?
What is string variable?
Explain yield() method in thread class ?