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
Array base access faster or pointer base access is faster?
Why is c++ awesome?
What are friend classes?
Which software is best for programming?
How can I learn c++ easily?
How do I exit turbo c++?
What is an arraylist c++?
Can constructor be static in c++?
What is std :: endl?
What is buffering in c++?
Which one is a preferred language C or C++? Why?
What is the use of class in c++?
What does n mean in c++?
What are the comments in c++?
What is the difference between new() and malloc()?