what is data Abstraction? and give example
Answer Posted / gaurab varshney
Data Abstraction is the process by which data and programs
are defined with a representation similar to its meaning
(semantics), while hiding away the implementation details.
Abstraction tries to reduce and factor out details so that
the programmer can focus on a few concepts at a time. A
system can have several abstraction layers whereby
different meanings and amounts of detail are exposed to the
programmer.
For example, low-level abstraction layers expose details of
the hardware where the program is run, while high-level
layers deal with the business logic of the program.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain what happens when a pointer is deleted twice?
Does a derived class inherit or doesn't inherit?
What is the use of endl in c++ give an example?
What is a node class in c++?
Why cstdlib is used in c++?
Which coding certification is best?
what do you mean by volatile variable?
What does std mean in c++?
Tell me what are static member functions?
How the programmer of a class should decide whether to declare member function or a friend function?
Why do we use iterators?
What do you know about near, far and huge pointer?
What is c++ mutable?
What is set in c++?
What is the sequence of destruction of local objects?