Question: Need help to run this output and explain step by step how to get the result What is the output of the following code? Queue
Need help to run this output and explain step by step how to get the result
What is the output of the following code?
Queueq = new LinkedList ();
q.add(10);
q.add(4);
System.out.println(q.size());
System.out.println(q.peek());
q.add(6);
System.out.println(q.remove());
q.add(3);
System.out.println(q.remove());
System.out.println(q.peek());
System.out.println(q.remove());
q.add(7);
System.out.println(q.peek());
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
