DISH interview question

What is the difference between a stack and a queue?

Interview Answer

Anonymous

14 Nov 2017

A stack is a LIFO structure while a queue is a FIFO structure. Both can have their underlying implementation via a linked list.