what is data Abstraction? and give example
Answer Posted / sayed waseem tutorails phd fro
Data abstraction is any device that allows you to treat data
as humans encounter it rather than as it is stored on machine.
At the lowest level, all primitive data types are
abstractions -- as programmers, we don't usually have to
deal with data at the bit level (which is how it is
ultimately stored) but as integers, floating point numbers,
characters, etc.
We then add layers onto that abstraction -- maybe two
integers represents a Point, or we and enumerations to
represent the months of the year, days of the week, etc.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the two main roles of operating system?
What is insertion sorting?
Explain the uses oof nested class?
what is the use of void main() in C++ language?
What are the five basic elements of a c++ program?
Can user-defined object be declared as static data member of another class?
Do class method definitions?
What is abstraction with real time example?
What is the hardest coding language to learn?
Are php strings immutable?
What is private inheritance?
Why do we use constructor?
Explain differences between alloc() and free()?
How do you generate a random number in c++?
What is the type of 'this' pointer?