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 |
why overriding?
What is a class in oop?
What are the four main oops concepts?
Can we define a class within the interface?
What is inheritance and how many types of inheritance?
features of OOPS
22 Answers Ness Technologies, Satyam,
WRITE A SIMPLE C++ PROGRAM TO SWAP TWO NOS WITHOUT USING TEMP
WAP to generate 2n+1 lines of the following pattern on the computer screen:
If a=5, b=6, c=7, b+=a%c*2. What is the final value of b?
What is virtual function?where and when is it used?
Why is encapsulation used?
Why do we use encapsulation in oops?