vishnu bobade
Answered On : Sep 8th, 2005
Classes in C++ provide static encapsulation of objects, by generating code which contains specific knowledge about the internals of encapsulated objects. Static encapsulation occurs at compile time, and therefore cannot directly support the evolution of objects, since recompilation of source code is required if the internal layout changes. This also prohibits the use of distributed or persistent objects without first ensuring that the internal representations of the objects match the ones in the compiled code

1 User has rated as useful.
Login to rate this answer.
v.chandrasekhar
Answered On : Jan 17th, 2006
1.The wrapping up of data and member function into a single unit is called encapsulation.2.The data is not accessible to the outside world and only those functions which are wrapped into a class can access it.
Login to rate this answer.
priya
Answered On : Mar 5th, 2006
the wrapping up of data and functions into a single unit is called as encapsulation.e.g: class friend{ int infinte friends; public: int mysoul();}

1 User has rated as useful.
Login to rate this answer.
hi,
Binding several related variables and member functions as a single unit is called data encapsulation. This job has been done by "class" keyword.
Thanks....
Login to rate this answer.
sunil
Answered On : Apr 9th, 2006
hi!
Encapsulation means wrapping up of Data and Code...this is what i got from data structures book...
Login to rate this answer.
jha
Answered On : Dec 16th, 2006
According to me encapsulation is the process in which we can collect the data members and functions in one place or we can say that to encapsulate the related things.
Login to rate this answer.
Ramya
Answered On : Dec 14th, 2011
The process of grouping data and its functions into units called as objects paves way for encapsulation.
Login to rate this answer.
anjala
Answered On : Sep 22nd, 2012
encapsulation is the process of wrapping of data member and functions in to a single unit
Login to rate this answer.
sakshi
Answered On : Oct 4th, 2012
The wrapping up of data and code into a single entity is known as encapsulation.It is a way to implement data abstraction
Login to rate this answer.