In: Computer Science
1. What is an abstract data type? In an ADT, what is known and what is hidden?
Abstract Data Type(ADT) is a data type, in which the behaviour of the data type such as it's operations are defined, but the underlying details about the implementation of these operations are hidden. what is known? operations that the data structure performs what is hidden? how these operations are implemented is hidden.