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

How are the features of c++ different from c?

1088


What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0

953


Explain Memory Allocation in C/C++ ?

1065


How can we check whether the contents of two structure variables are same or not?

1069


What is istream and ostream in c++?

1125


What's the "software peter principleā€?

1149


How do you clear a buffer in c++?

958


What do you mean by early binding?

1066


When do we use copy constructors?

1079


Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create

2630


You want to link a c++ program to c functions. How would you do it?

993


What do you know about near, far and huge pointer?

1136


How a macro differs from a template?

1168


Is it legal in c++ to overload operator++ so that it decrements a value in your class?

1049


How can I disable the "echo" feature?

1163