Tuesday, April 10, 2007
What is Data Abstraction?
Subscribe to:
Post Comments (Atom)
World of tricky Core Java Q&A(Java SE),Java EE and Open source technologies like Struts,Hibernate,Spring,Velocity etc
Disclaimer
Interview Questions On Java,Java EE Copyright © 2012
6 comments:
Representing essential details and hiding background details
Hiding of the irrelevent data is called data abstraction.It can be understood in accordance to the access specifiers, that helps in data security as well as ease to handle an apllication.
Driving a car Without Knowing its Engine Stucture
It is used to represent essential feature without including backfground details and feature.
Using this concept users only be able to know what is working. They dont know how it is working.
An object provides an interface of operation on it and hide implementation.data abstraction is the way of operation.
we using login pages with out knowing back ground code
Post a Comment