What is abstraction?
Answers were Sorted based on User's Feedback
Answer / nagababu
Hiding own nessesary data from the user it is called
Abstraction
| Is This Answer Correct ? | 6 Yes | 1 No |
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 |
Answer / sree
data abstraction means hiding the unneccessary part
Data abstraction is main feature of c++
| Is This Answer Correct ? | 3 Yes | 0 No |
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 |
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 |
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 |
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 |
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 |
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 |
What is the point of polymorphism?
#include <iostream> using namespace std; int main() { int a = 2; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][c[1][4]]; }
JAVA is FULLY OBJECT ORIENTED PROGRAMING LANGUAGE?
Why is abstraction used?
What is protected in oop?
what is cast operator?
Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
write a code for this:trailer recordId contains a value other than 99, then the file must error with the reason ‘Invalid RECORD_ID’(User Defined Exception).
Why is destructor used?
what is function overloading..?
design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)
Write a program to find out the number of palindromes in a sentence.