what is data Abstraction? and give example
Answer Posted / sunny verma
abstraction means act of represeting essential features
without including background detail and explanation.
The classes uses the concept of data abstraction called
Abstract data Type(ADT)
Clases defines the list of abstract attribute may be
size,weight,cost and function to operate on these
attributes.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What things would you remember while making an interface?
What is pair in c++?
What is private, public and protected inheritance?
Can notepad ++ run c++?
What is an undefined behavior and sequence points
Which sort does c++ use?
What is function overloading c++?
Can user-defined object be declared as static data member of another class?
What is the disadvantage of using a macro?
What is a far pointer? where we use it?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
Why is polymorphism useful?
Can we declare a base-class destructor as virtual?
Is vector a class in c++?
Function can be overloaded based on the parameter which is a value or a reference. Explain if the statement is true.