what is data Abstraction? and give example
Answer Posted / hegde
Abstraction is generally defined as 'the process of formulating generalised concepts by extracting common qualities from specific examples
-Blair et al, 1991
Abstraction is not a complement for encapsulation.
Encapsulation is information hiding.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain the benefits of proper inheritance.
Do the names of parameters have to agree in the prototype, definition, and call to the function?
What are single and multiple inheritances in c++?
Why we use #include iostream in c++?
Can we distribute function templates and class templates in object libraries?
Why c++ is called oop?
What is flag in computer?
When does a name clash occur in c++?
What is bubble sort c++?
What is a template in c++?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
What is the importance of mutable keyword?
What is c++ runtime?
How can you differentiate between inheritance and implementation in c++?
Why do we use templates?