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...

Answer Posted / namitha

Data abstraction refers to, providing only essential
features by hiding its background 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 ?    263 Yes 58 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is #include iostream h in c++?

1115


Explain the use of this pointer?

1132


What are signs of manipulation?

1038


Write a program using merge () function to combine the elements of array x[ ] and y[ ] into array z[ ].

1020


What are inline functions? What is the syntax for defining an inline function?

1117


What is the rule of three?

964


What is a memory leak c++?

1089


What are the vectors in c++?

1003


What is the use of function pointer?

990


Const char *p , char const *p What is the difference between the above two?

1175


What does scope resolution operator do?

1077


Differentiate between realloc() and free().

1003


Define 'std'.

1148


Which software is used to run c++ program?

968


What is meant by const_cast?

1095