what is data Abstraction? and give example
Answer Posted / prasenjit chatterjee
Abstraction means that just represents the essential
feature of some thing without including much details.
So the data abstraction means that does't define the
internal structure of the data, but allows difference
operations on it. Such data types are called abstract data
type or (ADT), like stack queues are the example of an
abstract data type
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is algorithm in c++ programming?
What are the operators in c++?
What is c strings syntax?
Why can templates only be implemented in the header file?
Does c++ have finally?
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.
What is the type of this pointer in c++?
What is the difference between an external iterator and an internal iterator?
Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].
Explain bubble sorting.
What are the three forms of cin.get() and what are their differences?
What is atoi?
Can we use this pointer in a class specific, operator-overloading function for new operator?
What do you mean by delegate? Can a user retain delegates?
What are manipulators in c++ with example?