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
What is a float in c++?
If a header file is included twice by mistake in the program, will it give any error?
What are single and multiple inheritances in c++?
What is a driver program?
What is std :: endl?
What does new do in c++?
Why is c++ a mid-level programming language?
What is extern c++?
what is data encapsulation in C++?
What is math h in c++?
Why is that unsafe to deal locate the memory using free( ) if it has been allocated using new?
Is c++ a high level language?
What is the difference between a reference and a pointer?
What is the protected keyword used for?
What are friend classes? What are advantages of using friend classes?