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 abstraction?

Answers were Sorted based on User's Feedback



What is abstraction?..

Answer / nagababu

Hiding own nessesary data from the user it is called
Abstraction

Is This Answer Correct ?    6 Yes 1 No

What is abstraction?..

Answer / rajaneesh

It can be defined as the seperation of unnecessary
details or explation from system requirments so as to
reduce the complaxities of understanding requirments.
For example a person who is driving a car doesn't need to
know the mechnical works that have been done to make a
car... so what all the driver is to do is just drive.. ie
move start and stop....

Is This Answer Correct ?    4 Yes 0 No

What is abstraction?..

Answer / sree

data abstraction means hiding the unneccessary part
Data abstraction is main feature of c++

Is This Answer Correct ?    3 Yes 0 No

What is abstraction?..

Answer / sougata kr. chatterjee

The term abstaction refers hiding the inner processing of
data but it help for done the work in structured manner.

Is This Answer Correct ?    1 Yes 0 No

What is abstraction?..

Answer / azra

it is manages the complexity the real world object can be managed by the abstraction.

Is This Answer Correct ?    1 Yes 0 No

What is abstraction?..

Answer / solanki

Abstraction is thing which you directly not use.
like as in motor making all spare aprart are come from
differnt class which all are combined in one motor class
where we use it.
we direclty not use any only one think as tyre or petrol
for use it we want to combine that all.

Is This Answer Correct ?    0 Yes 0 No

What is abstraction?..

Answer / arun upadhyay

Abstraction is basically the data types,information
associated with a function,object which may not be required
by user therefore that unnecessary data is hidden from user.
e.g. int a, only data type nature is provided not about
its memory space.

Is This Answer Correct ?    1 Yes 1 No

What is abstraction?..

Answer / pavitra.m.s

Abstraction refers to the attributes of an object that
clearly demarcates it from other objects.

Is This Answer Correct ?    0 Yes 1 No

What is abstraction?..

Answer / guest

For example, control abstraction in structured programming
is the use of ... Object-oriented programming can be seen
as an attempt to abstract both data and

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More OOPS Interview Questions

#include <string.h> #include <stdio.h> #include <stdlib.h> #include <conio.h> void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort

0 Answers  


What is the expansion of OOPS?

24 Answers   TCS,


c++ program to swap the objects of two different classes

0 Answers  


what is difference between objects and function

3 Answers  


how to swap the variables without using temp and operators

1 Answers  


who is the founder of c++?

15 Answers   Hexaware, ONGC,


Why is abstraction used?

0 Answers  


Which is the only operator in C++ which can be overloaded but NOT inherited?

8 Answers  


explain dynamic binding by drowing

2 Answers   Cognizant,


I hv a same function name,arguments in both base class and dervied class, but the return type is different. Can we call this as a function overloading? Explain?

3 Answers  


Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.

0 Answers  


What is interface? When and where is it used?

0 Answers  


Categories