This QueueStackUtil class tests various usages of the Queue interface and Stack classes
param1 is an array of string. You will create a queue with each string as an element of
the queue. You will then reverse the order of the queue elements by removing each queue 
element and pushing it on a stack. You will then pop off each element and add it into the 
queue. The resukt will be a queue with its elements reversed.