An adt is defined to be a mathematical model of a user-defined type along with the collection of all ____________ operations on that model.
Answers
Answered by
0
Answer:
union
In a cs an abt is a mathematical model for data types. An abt is defined by its behaviour from point of view of a user of the data
Answered by
0
Answer:
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. The keyword “Abstract” is used as we can use these datatypes, we can perform different operations.
- The ADT is made of with primitive datatypes, but operation logics are hidden. These are few operations or functions of the Stack ADT.
- isFull(), =This is used to check whether stack is full or not
- isEmpry(),= This is used to check whether stack is empty or not
- push(x), =This is used to push x into the stack
- pop(),= This is used to delete one element from top of the stack
- peek(),= This is used to get the top most element of the stack
- size(),= this function is used to get number of elements present into the stack
Similar questions