What does abstract data type means?
Answer Posted / rini
ADTs allows the creation of instances with well-defined properties and behaviour. In object-orientation ADTs are referred to as classes. Therefore a class defines properties of objects which are the instances in an object-oriented environment.
ADTs define functionality by putting main emphasis on the involved data, their structure, operations as well as axioms and preconditions. Consequently, object-oriented programming is ``programming with ADTs'': combining functionality of different ADTs to solve a problem. Therefore instances (objects) of ADTs (classes) are dynamically created, destroyed and used.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you insert a new item in a binary search tree?
What is bubble sort and selection sort?
When ArrayIndexOutOfBoundsException occurs?
What is dangling pointer and how to avoid it?
Does list allow null values?
State the merit of linked representation of binary trees?
In what order the elements of a hashset are retrieved?
How would you implement two stacks using a single array?
How does quick sort work?
Does the minimal spanning tree of a graph give the shortest distance between any 2 specified nodes?
What is tree and its properties?
What is nsmutablearray?
When would you use a tuple?
Define a Deque?
What is the use of sorting?