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

How the delete operator differs from the delete[]operator?

1097


Why do we need c++?

1058


Who was the creator of c++?

1053


Differentiate between a template class and class template in c++?

1101


What is the use of volatile variable?

1087


Are strings immutable in c++?

1160


Should I learn c or c++ first?

1125


What are the rules about using an underscore in a c++ identifier?

1196


What is wrapper class in c++?

1119


Explain the properties and principles of oop.

1030


Explain how we implement exception handling in c++?

1059


Where can I run c++ program?

1068


Can a program run without main in c++?

1211


What is the hardest coding language to learn?

1042


Explain register storage specifier.

1024