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 / chealsha

Data abstraction is a process of representing essential
features without showing the background details.
For example:
#include<iostream.h>
#include<conio.h>
#include<math.h>
void main()
{
clrscr();
int a,b;
cout<<"enter a";
cin>>a;
b=sqrt(a);
cout<<"square of a="<<b;
getch();
}

In the above example,we are doing the square of "a" where
we can only see/use the sqrt function but we cant see the
background deails like coding of sqrt().

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do I write a c++ program?

1114


How to demonstrate the use of a variable?

1107


What are advantages of c++?

1017


What is the use of "new" operator?

1124


Explain virtual destructor?

1183


Which one is a preferred language C or C++? Why?

1084


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

1047


Can I learn c++ without knowing c?

1053


How the virtual functions maintain the call up?

1157


Which operator cannot be overloaded c++?

1010


How can we access protected and private members of a class?

1112


What is the difference between method overloading and method overriding in c++?

1143


Do you know about latest advancements in C++ ?

1228


Difference between a homogeneous and a heterogeneous container

1139


Is it possible to have a recursive inline function in c++?

1022