Answer:
pop
Explanation:
stack is a data structure perform the operation in specific order. The order stack follow is last in first out (LIFO).
push function is used to insert the element at the top of the stack.
peek is used to retrieve or fetch the element at the top.
pop is used to remove or delete the top element from the stack.
Therefore, the option A is correct.