what is data Abstraction? and give example
Answer Posted / tariq shadid
this style data representations and their associated primitive operations are
encapsulated in an abstract data type or object. The components of this style are
the objects—or, if you will, instances of the abstract data types. Objects are
examples of a sort of component we call a manager because it is responsible for
preserving the integrity of a resource (here the representation). Objects interact
through function and procedure invocations. Two important aspects of this
style are (a) that an object is responsible for preserving the integrity of its
representation (usually by maintaining some invariant over it), and (b) that
the representation is hidden from other objects.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
If all is successful, what should main return a) 0 b) 1 c) void
What is an undefined behavior and sequence points
What is ios flag in c++?
Why we use #include conio h in c++?
how to connect with oracle 9i with server in socket program in c/c++
Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
What is conditions when using boolean operators?
How do I exit turbo c++?
What do the keywords volatile and mean mutable?
why and when we can declar member fuction as a private in the class?
What is runtime errors c++?
If dog is a friend of boy and boy is a friend of house, is dog a friend of house?
what is upcasting in C++?
How can you differentiate between inheritance and implementation in c++?
When we use Abstract Class and when we use Interface?where we will implement in real time?