Multiple choice

Data types whose properties are independent of any implementation are called

  1. ADT

  2. ntegers

  3. float

  4. none of these

Reveal answer Fill a bubble to check yourself
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.