COMPUTER SCIENCE AND ENGINEERING
DATA STRUCTURES
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
Assignment
|
|
Primitive
|
|
Structured
|
|
Cardinility
|
Detailed explanation-1: -In computer science, an abstract data type (ADT) is a mathematical model for data types. An abstract data type is defined by its behavior (semantics) from the point of view of a user, of the data, specifically in terms of possible values, possible operations on data of this type, and the behavior of these operations.
Detailed explanation-2: -An ADT is defined to be a mathematical model of a user-defined type along with the collection of all PRIMITIVE operations on that model. Step-by-step explanation: The ADT (abstract datatype) is special kind of datatype, whose behavior is defined by a set of values and set of operations.
Detailed explanation-3: -An Abstract Data Type (ADT) is: same as an abstract class. a data type that cannot be instantiated. a data type for which only the operations defined on it can be used, but none else.