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

Explain static and dynamic memory allocation with an example each.

1109


Can notepad ++ run c++?

1085


Write some differences between an external iterator and an internal iterator?

1021


Is oops and c++ same?

1050


Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.

6409


Differences between private, protected and public and give examples.

1065


Explain the uses oof nested class?

1139


Comment on assignment operator in c++.

1116


Can we delete this pointer in c++?

1222


What is const pointer and const reference?

1165


Explain one method to process an entire string as one unit?

1589


What is exception handling? Does c++ support exception handling?

1033


When should we use multiple inheritance?

1046


What is difference between c++ and c ++ 14?

1051


Can member functions be private?

1004