Anonymous

What is a stack?

1

1 Answers

Sam Leo Profile
Sam Leo answered

A stack is a data structure used to store a collection of objects. Individual items can be added and stored in a stack using a push operation. Objects can be retrieved using a pop operation, which removes an item from the stack.

Answer Question

Anonymous