Define tuple
ordered sequence of elements that is immutable
Define immutable
values within cannot be modified whilst the program is running
Define List
abstract data type that describes a linear collection of data items in some order, occupying a specific position in the list
Define static list
when it is full, you cannot add any more items to the list.
when it is empty, or partially full, you can be wasting memory space
Define Linked List
Elements are called nodes which stores:
Define Doubly Linked List
has two pointer, to the next and previous node.
Define Stack
Applications of stacks
Operations of stacks