WHAT IS ABSTRUCT DATA TYPE ?
PLEASE EXPLAIN IT.
Answers were Sorted based on User's Feedback
Answer / purush
A unique datatype, that is defined by the progrmer.It may
refer to an object class in OOP or to a special data type in
traditional,non-OOP languages.
ADT is a specification of a set of data and the set of
operations that can be performed on the data.This supports
the principle of INFORMATION HIDING.
| Is This Answer Correct ? | 18 Yes | 3 No |
Answer / guest
data abstraction
abstract the data called the background details for ex
[size,weight,cost]
encapsulation
security the data
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / prasad.m.y
Abstraction is nothng but datahiding and encapsulation is wrapping up of data into a single unit.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / harsh.chiks
ADT is a set of data values and operations which are
independent of it's implementations.
the best examples of ADT are STACKS,QUEUES...
| Is This Answer Correct ? | 0 Yes | 0 No |
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
2. Give the different notations for the class.\
What is a null tree?
Child cObj = new Parent() Wahts the output ?
What is the fundamental idea of oop?
What are properties in oop?
why overriding?
Precompilation ?
What do you mean by pure virtual functions?
What is basic concept of oop?
write a c++ code of diagonal matrix.
Explain the concepts involved in Object Oriented programming.