<p><strong>Java Stacks and Queues quiz need help~</strong></p><p>Deque<Character> cQueue = newArrayDeque<Character>();</p><p>cQueue.offer('A');</p><p>cQueue.offer('B');</p><p>cQueue.offer('C');</p><p>cQueue.offer('D');</p><p>System.out.println( cQueue.peek( ) ); //what will beprinted?</p><p>cQueue.offer('E');</p><p>cQueue.offer('F');</p><p>cQueue.poll( );</p><p>cQueue.poll( );</p><p>System.out.println( cQueue.peek( ) ); //what will beprinted?</p><p>cQueue.poll( );</p><p>cQueue.poll( );</p><p>cQueue.offer('G');</p><p>System.out.println( cQueue.peek( ) ); //what