Matt Jenkins output for testQueue This program will test various methods on a queue. Making the queue empty. Checking size of queue to make sure it is empty. The size of the queue is 0 Adding elements to fill the queue. 1 was added to the queue. 2 was added to the queue. 3 was added to the queue. 4 was added to the queue. 5 was added to the queue. 6 was added to the queue. 7 was added to the queue. 8 was added to the queue. 9 was added to the queue. 10 was added to the queue. 11 was added to the queue. 12 was added to the queue. 13 was added to the queue. 14 was added to the queue. 15 was added to the queue. 16 was added to the queue. 17 was added to the queue. 18 was added to the queue. 19 was added to the queue. 20 was added to the queue. checking to see if the queue is full. The queue is full: TRUE Adding an element to a full queue. You have tried to add a value to a full queue. Please remove a value before adding another one. Removing items from the queue. The value removed from the queue was 1 The value removed from the queue was 2 The value removed from the queue was 3 The value removed from the queue was 4 The value removed from the queue was 5 The value removed from the queue was 6 The value removed from the queue was 7 The value removed from the queue was 8 The value removed from the queue was 9 The value removed from the queue was 10 The value removed from the queue was 11 The value removed from the queue was 12 The value removed from the queue was 13 The value removed from the queue was 14 The value removed from the queue was 15 The value removed from the queue was 16 The value removed from the queue was 17 The value removed from the queue was 18 The value removed from the queue was 19 The value removed from the queue was 20 checking to see if the queue is empty The queue is empty: TRUE Removing an element from an empty queue The queue is empty, you can't remove an element from it Checking first element of an empty queue The first element of the empty queue is 20 This program has ended normally.