Question: In a stack implemented using an array, what happens when you try to push an element onto a full stack?
Options:
Correct Answer: The stack overflows
Solution:
Pushing onto a full stack results in a stack overflow error, as there is no space to add more elements.