what is data Abstraction? and give example
Answers were Sorted based on User's Feedback
Answer / ajit
data abstraction is the method of creating new user defined
data types
| Is This Answer Correct ? | 0 Yes | 4 No |
Answer / idea man
Its hiding data that are not needed for presentation. kiya
mac
| Is This Answer Correct ? | 16 Yes | 27 No |
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 |
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 |
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 |
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 |
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 |
In a class only declaration of the function is there but defintion is not there then what is that function?
What is algorithm in c++ programming?
Can c++ do everything c can?
What character terminates all character array strings a) b) . c) END
Why is c++ so fast?
What data structure is fastest, on average, for retrieving data: a) Binary Tree b) Hash Table c) Stack
Can a program run without main in c++?
Of the numbers 12 23 9 28 which would be at the top of a properly implemented maxheap a) 28 b) 9 c) Any of them could be
Explain the difference between c++ and java.
How do you link a C++ program to C functions?
What is the difference between a reference and a pointer?
what is data encapsulation in C++?