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


Please Help Members By Posting Answers For Below Questions

What is a float in c++?

737


If a header file is included twice by mistake in the program, will it give any error?

781


What are single and multiple inheritances in c++?

774


What is a driver program?

842


What is std :: endl?

783


What does new do in c++?

816


Why is c++ a mid-level programming language?

781


What is extern c++?

712


what is data encapsulation in C++?

792


What is math h in c++?

821


Why is that unsafe to deal locate the memory using free( ) if it has been allocated using new?

827


Is c++ a high level language?

733


What is the difference between a reference and a pointer?

815


What is the protected keyword used for?

841


What are friend classes? What are advantages of using friend classes?

840