what is data Abstraction? and give example
Answer Posted / ajay desai
it is the process of representing the essential features of
an object without including its implementation details.
| Is This Answer Correct ? | 27 Yes | 7 No |
Post New Answer View All Answers
What is an overflow error?
what is pre-processor in C++?
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
What is pointer in c++ with example?
If you want to share several functions or variables in several files maitaining the consistency how would you share it?
How do you traverse a btree in backward in-order?
What is the rule of three?
What are multiple inheritances (virtual inheritance)? What are its advantages and disadvantages?
How do you save a c++ program?
Difference between an inspector and a mutator
How to defines the function in c++?
What is the history of c++?
Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort
Is c# written in c++?
Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes