What is encapsulation?

Answers were Sorted based on User's Feedback



What is encapsulation?..

Answer / k.rakesh

Encapsulation means binding the data and coding the part is called as "Encapsulation"

Is This Answer Correct ?    1 Yes 0 No

What is encapsulation?..

Answer / laxmikanth k

Binding the data and code is called"encapsulation"

Is This Answer Correct ?    0 Yes 0 No

What is encapsulation?..

Answer / senthil

wrapping of data into single unit.........

Is This Answer Correct ?    0 Yes 0 No

What is encapsulation?..

Answer / rahul

Encapsulation can be described as a protective barrier
that prevents the code and data being randomly accessed by
other code defined outside the class.
Encapsulation is the technique of making the fields in a
class private and providing access to the fields via public
methods. If a field is declared private, it cannot be
accessed by anyone outside the class, thereby hiding the
fields within the class. For this reason, encapsulation is
also referred to as data hiding.

Is This Answer Correct ?    0 Yes 0 No

What is encapsulation?..

Answer / chinni

The wrapping up of data and functions into a single unit
called encapsulation.

Is This Answer Correct ?    0 Yes 0 No

What is encapsulation?..

Answer / rajdeep gupta

Two concepts that go together in the object oriented approach are Encapsulation & Abstraction. Abstraction is the representation of only the essential features of an object, while Encapsulation is the hiding of the non-essential features.

Think of a person driving a car. He does not need to know the internal working of the engine or the way gear changes work, to be able to drive the car (Encapsulation). Instead, he needs to know things such as how much turning the steering wheel needs, etc (Abstraction).

Is This Answer Correct ?    0 Yes 0 No

What is encapsulation?..

Answer / kirti

Encapsulation is the ability to hide the internal workings of an object's behavior and its data. For instance, let's say you have a object named Bike and this object has a method named start(). When you create an instance of a Bike object and call its start() method you are not worried about what happens to accomplish this, you just want to make sure the state of the bike is changed to 'running' afterwards. This kind of behavior hiding is encapsulation and it makes programming much easier.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More OOPS Interview Questions

What is a unary operator?

5 Answers  


what is main difference between object oriented object base

2 Answers   Wipro,


Can we create object of interface?

0 Answers  


Why do we use polymorphism in oops?

0 Answers  


Given two strings like x=?hello? and y=?open?, remove any character from string x which is also used in string y, thus making the result x=?hll?.

13 Answers   IBM,






What is debug class?what is trace class? What differences are between them? With examples.

0 Answers  


What do you mean by multiple inheritance and multilevel inheritance? Differentiate between them.

2 Answers  


what uses of c++ language?

3 Answers  


How is data security provided in Object Oriented languages? ?

5 Answers  


What is inheritance in oop?

0 Answers  


What is a friend function & its advantage?

2 Answers   TCS,


OOP'S advantages of inheritance include:

1 Answers   Infosys,


Categories