Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is data Abstraction? and give example

Answer Posted / abhay shukla

ata abstraction is a process of representing the essential
features without including implementation details.


example:
class result
{
int marks;
float percentage;
char name[20];
void input();
void output();
}

main()
{
bank b1;
b1.input();
b1.output();
}

in the above example, b1 is an object calling input and
output member functions, but that code is invisible to the
object b1

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why is null pointer used?

1129


What is meant by entry controlled loop? What all C++ loops are exit controlled?

1029


When should we use multiple inheritance?

1014


Write a program in c++ to print the numbers from n to n2 except 5 and its multiples

2440


How can you quickly find the number of elements stored in a static array?

1064


Why c++ is so important?

1045


Why we use #include conio h in c++?

1006


What is token c++?

993


Does c++ support multilevel and multiple inheritances?

967


What language is a dll written in?

989


Why is c++ called oops?

1103


What is c++ mutable?

1098


What is the full form of stl in c++?

1159


What does new in c++ do?

975


What is #include iostream?

1214