1. ► Stacks have LIFO ordering
2. ► priority_queue forms the basis of many algorithms
3. ► STL stack uses deque to implement stack
4. ► Accessing top element in stack is constant time operation
5. ► Only top element can be accessed in stack
6. ► Nested function calls form a stack
7. ► Queue can be implemented using a list
8. ► An element of the priority queue can be accessed only in O(n) time
9. ► priority_queue’s priority function cannot be changed
10. ► A queue has FIFO ordering