This program illustrates the creation of a queue using values from a deque (when the underlying container is the default one, namely a deque), and from a list, when the underlying container is a list. Press Enter to continue ... The queue q1 is created from a deque of 4 values. Press Enter to continue ... Here are the values of q1, in "FIFO" order: Popping: 1 Popping: 2 Popping: 3 Popping: 4 Press Enter to continue ... The queue q2 is created from a list of 6 values. Press Enter to continue ... Here are the values of q2, in "FIFO" order: Popping: 6 Popping: 9 Popping: 8 Popping: 10 Popping: 5 Popping: 7 Press Enter to continue ...