what is data Abstraction? and give example
Answer Posted / shruthi
Data abstraction enforces a clear separation between the
abstract properties of a data type and the concrete details
of its implementation. The abstract properties are those
that are visible to client code that makes use of the data
type—the interface to the data type—while the concrete
implementation is kept entirely private, and indeed can
change, for example to incorporate efficiency improvements
over time. The idea is that such changes are not supposed to
have any impact on client code, since they involve no
difference in the abstract behaviour.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Describe exception handling concept with an example?
Does there exist any other function which can be used to convert an integer or a float to a string?
Is java based off c++?
Can a Structure contain a Pointer to itself?
What is the difference between mutex and binary semaphore?
What is class invariant in c++?
What are enumerations?
What is difference between array and vector in c++?
What do you mean by storage classes?
What is #include cmath?
How does c++ sort work?
What is array give example?
What is the difference between while and do while loop? Explain with examples.
What is singleton class in c++?
Explain container class.