@author A.Mano Sriram
@dateCreated 5th April, 2019
- push(data)
- pop()
- isEmpty()
- isFull()
- getTopElement()
push(data) : Pushes Element to the Top.
pop() : Removes the Top Most Element.
isEmpty() : Returns True if the Stack is Empty, else False.
isFull() : Returns True if the Stack if Full, else False.
getTopElement() : Returns the Top Most Element in the Stack.