what is data Abstraction? and give example
Answer Posted / rohit shori
data abstraction
3 types:-
Physical level describes how a record (e.g., customer) is
stored.
Logical level: describes data stored in database, and the
relationships among the data.
type customer = record
name : string; street :
string; city : integer; end;
View level: application programs hide details of data
types. Views can also hide information (e.g., salary) for
security purposes.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
How can a called function determine the number of arguments that have been passed to it?
What are the extraction and insertion operators in c++?
What are the advantages of using const reference arguments in a function?
What is difference between array and vector in c++?
Write a program to find the Fibonacci series recursively.
What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
Can we sort map in c++?
What is name hiding in c++?
What is the difference between an external iterator and an internal iterator?
How the keyword struct is different from the keyword class in c++?
How do I make turbo c++ full screen?
what is the use of void main() in C++ language?
Can a class be static in c++?
What is pointer -to-members in C++? Give their syntax?
Can we define a constructor as virtual in c++?