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 are the advantages of c++?

0 Answers  


Will the inline function be compiled as the inline function always? Justify.

1 Answers  


What is OOPs

12 Answers   CA,


What are the different types of polymorphism?

3 Answers  


What is the role of copy constructor in copying of thrown objects?

0 Answers  






write a program that will produce the ff. output. "what fruit will you buy? 1)apple 2)orange 3)mango ENTER CHOICE (1,2 or 3)> HOW MANY WILL YOU BUY?> THAT WILL COST XX.XX

1 Answers  


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


What is the best sorting algorithm, when there is a large amount of data, that cannot be fit in the main memory. ?

1 Answers   Yahoo,


write a function signature with various number of parameters.

0 Answers  


What is object in c++ wikipedia?

0 Answers  


Can you declare an array without a size in c++?

0 Answers  


What is ios in c++?

0 Answers  


Categories