What are the different Abstract Data Type Groups?

Skill/Topic: Memory, Abstract Data Types, and Addresses
A) Integer, Floating-Type, Character & Boolean are the four different data type groups
Explanation: You determine the amount of memory to reserve by determining the appropriate abstract data type group to use and then deciding which abstract data type within the group is right for the data. The different abstract data type groups are Integer, Floating-Type, Character & Boolean

Showing Answers 1 - 3 of 3 Answers

Well.. lets differentiate ADT and data structures.....

ADT is logical description.. like, interger.. We only know type of operations it can perform (+, *, -, +....).. we dont know anything about implementation. How it is represented in memory..
Data structure is the actual representation of the data during the implementation and the algorithms to manipulate the data elements.

ADT is in the logical level and data structure is in the implementation level.

Stack is an ADT, stack implemented using array or linked list is DATA structure...

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions