Data types whose properties are independent of any implementation are called
-
ADT
-
ntegers
-
float
-
none of these
A
Correct answer
Explanation
Abstract Data Types (ADTs) define data structures by their behavior (operations and properties) rather than their implementation. This separation of interface from implementation allows the same ADT to have multiple concrete implementations. For example, a Stack ADT can be implemented using arrays or linked lists - both behave the same from the user's perspective.