Question: c. Given the following segment of the program, a. Stack color = new Stack(5); b. Queue shape = new Queue(5); String x, y; d. S.push(blue);
c. Given the following segment of the program, a. Stack color = new Stack(5); b. Queue shape = new Queue(5); String x, y; d. S.push("blue"); e. S.push("orange"); f. Q.enqueue("green"); Q.enqueue("red"); h. x=S.peek TopO; i. Q.enqueue(x); j. System.out.println("Popped: "+S.pop(); * = Q dequeuen; 1. System.out.println("Removed: "+y); m. S.push(y) Q.enqueue(y); Q.enqueue(brown); p. System.out.println("Front from Q:" +Q.peekFront(); 9. System.out.println("Top from S:" +S.peek TopO); r. System.out.println("Stack size: "+S.size(); S. System.out.println("Queue size: "+Q.size(); n. 0. After the code is executed, a) Show the output from the above program. (3.0 marks) b) List all the contents of the stack and queue. (1.5 marks)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
