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

Can I learn c++ without c?

1189


How can you create a virtual copy constructor?

1134


How many keywords are used in c++?

1064


What is wrapper class in c++?

1199


What is the difference between an array and a list?

1090


Describe private, protected and public – the differences and give examples.

1266


What is a string example?

1148


What is class and structure in c++?

1255


Define stacks. Provide an example where they are useful.

1077


Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?

1327


Define 'std'.

1225


How do you find out if a linked-list has an end?

1181


How do I get good at c++ programming?

1250


Explain the term memory alignment?

1306


Explain the benefits of proper inheritance.

1193