Answers were Sorted based on User's Feedback



what is data Abstraction? and give example..

Answer / ajit

data abstraction is the method of creating new user defined
data types

Is This Answer Correct ?    0 Yes 4 No

what is data Abstraction? and give example..

Answer / idea man

Its hiding data that are not needed for presentation. kiya
mac

Is This Answer Correct ?    16 Yes 27 No

what is data Abstraction? and give example..

Answer / keshav.gadde

It is a mechanism to create new data types that include
several related operations to be performed on it and
attributes to suit the require ments of an application.In C++
class are written to prepare ADTs(Abstract data types)

Is This Answer Correct ?    19 Yes 38 No

what is data Abstraction? and give example..

Answer / byomakesh panda

The characteristics that allows program-data independence
and program-operation independence is called Data
Abstraction.

Is This Answer Correct ?    61 Yes 89 No

what is data Abstraction? and give example..

Answer / anil bisht

an abstract data type (ADT) is an idealization of a set of
values, along with a set of functions and relations on these
values that together constitute a type. Simple examples
include Integers, Complexes, Sets, Lists, and so on.

Is This Answer Correct ?    49 Yes 89 No

what is data Abstraction? and give example..

Answer / guest

Data abstraction is OOP entity wherein user defined
datatypes are introduced like class for simplicity.

Is This Answer Correct ?    74 Yes 167 No

what is data Abstraction? and give example..

Answer / deepak

Data abstraction is process of dfining the function & it is
used several times as needed with the required properties

Is This Answer Correct ?    172 Yes 468 No

Post New Answer

More C++ General Interview Questions

What is the difference between Pointer and a Reference? When you would use them?

4 Answers   Wipro,


Please explain class & object in c++?

0 Answers  


What are advantages of using friend classes?

0 Answers  


write a corrected statement so that the instruction will work properly. if (4 < x < 11) y = 2 * x;

0 Answers  


What is a dangling pointer in c++?

0 Answers  






What are the various access specifiers in c++?

0 Answers  


Explain bubble sorting.

0 Answers  


Generally variables are stored in heap memory. When he variables are created in stack?

4 Answers   Persistent,


What is the stack?

5 Answers   IBM, ICICI,


pls help.. paper bills.. 1000, 500, 100, 50, 20, 10, 5, 1.. create a program that will count all the paper bills in the number being input.. example: enter a number: 3886 there is/are: 3 ->1000 1 ->500 3 ->100 1 ->50 1 ->20 1 ->10 1 ->5 1 ->1 example2: enter a number: 728 there is/are: 0 ->1000 1 ->500 2 ->100 0 ->50 1 ->20 0 ->10 1 ->5 3 ->1

4 Answers  


What is format for defining a structure?

0 Answers  


Can you overload the operator+ for short integers?

0 Answers  


Categories