What is a Stack data structure? List the operations that can be performed on a stack.
What is a Stack data structure? List the operations that can be performed on a stack.
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Q//What is a Stack data structure?
ANSWER: Stack is a linear data structure which follows a particular order in which the operations are performed. The order may be LIFO(Last In First Out) or FILO(First In Last Out).
List the operations that can be performed on a stack.: