Answers were Sorted based on User's Feedback



what is data Abstraction? and give example..

Answer / sandeep kumar

data abstraction hide the actual implementation or hide the actual working

Is This Answer Correct ?    0 Yes 0 No

what is data Abstraction? and give example..

Answer / mak

Data Abstraction is leaving behind the unwanted properties
and taking only the Essential properties for defining the class.

Example:

When writing a class for a Employee, say John as Object
will require (Essential Properties) Empno, Dob, Doj, Salary,
Salary calculation logic as function etc.,
But john will be having properties like Height, Weight,
Color etc., which is not required for the class we are
defining..

Is This Answer Correct ?    0 Yes 0 No

what is data Abstraction? and give example..

Answer / vatsal

DATA ABTRACTION I SIMPLY HIDING UN-NECCESSARY THING WHICH ARE NOT USEABLE & SHOWING THING WHICH ARE USEABLE SO THE DATA...

Is This Answer Correct ?    0 Yes 0 No

what is data Abstraction? and give example..

Answer / sayed waseem tutorails phd fro

Data abstraction is any device that allows you to treat data
as humans encounter it rather than as it is stored on machine.

At the lowest level, all primitive data types are
abstractions -- as programmers, we don't usually have to
deal with data at the bit level (which is how it is
ultimately stored) but as integers, floating point numbers,
characters, etc.

We then add layers onto that abstraction -- maybe two
integers represents a Point, or we and enumerations to
represent the months of the year, days of the week, etc.

Is This Answer Correct ?    0 Yes 0 No

what is data Abstraction? and give example..

Answer / umair

data abstraction mean definning somthing but not in detail
there are two types of data abstraction

e.g
main()
{
add();
sub();
}

Is This Answer Correct ?    0 Yes 0 No

what is data Abstraction? and give example..

Answer / anuj sharma

data abstraction is a process of representing the essential
features without including implementation details.

Is This Answer Correct ?    0 Yes 0 No

what is data Abstraction? and give example..

Answer / ambika soni

It is a process or a concept in which unwanted data and information exist in hidden form. A user needs not to know this detail.

Is This Answer Correct ?    0 Yes 0 No

what is data Abstraction? and give example..

Answer / faisal

Abstraction is the representation of only the essential features of an object and hiding un essential features of an object.

Is This Answer Correct ?    0 Yes 0 No

what is data Abstraction? and give example..

Answer / atul sharma

Data abstraction allowed only essential features like it
only execute the data member of an real word object of
particular class without background activity.

Is This Answer Correct ?    0 Yes 0 No

what is data Abstraction? and give example..

Answer / mahmud hasan

Data abstruction is a process of representing the essential
features without including the background details or
explanations.

The concept of data abstruction relates to the idea of
hiding data that is not needed for presentation.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is the precedence when there is a global variable and a local variable in the program with the same name?

0 Answers  


difference between c and c++?

38 Answers   Cognizant, IBM, Infosys, Oracle, Sarva Shiksha Abhiyan, Wipro,


If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3

0 Answers  


What is a manipulative person?

0 Answers  


Can you explain the term "resource acquisition is initialization?"

1 Answers   Amazon,






Difference between delete and free.

0 Answers  


how to explain our contribution in the project?

0 Answers   Wipro, Yahoo,


Write a function that swaps the values of two integers, using int* as the argument type?

0 Answers  


How const int *ourpointer differs from int const *ourpointer?

0 Answers  


What is functions syntax in c++?

0 Answers  


Explain Text Manipulation Routines?

0 Answers  


What is cout flush?

0 Answers  


Categories