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
Define balancing condition for AVL Tree.
Describe avl tree or height balanced binary search tree.
What is difference between hashmap and linkedhashmap?
Explain the term base case?
What is example of data?
Why is data structure important?
What are the types of sorting?
Why quicksort is called quick?
How would you swap the Kth node from beginning with Kth node from end in a Linked List.
Which method will arrange the element of an array in alphabetical order?
What is a stable algorithm?
What is static array?
Which is faster list or set?
What is scalar data type?
Why do we use insertion sort?