Data Structure

Question 2: This question is about Maps and priority queues. A This question is about the basics of Maps (4 points) 1. Declare a map capable of name of a student and associating it with the number of credits that have completed. 2. Write a method that will take in a number of credits as a parameter and find all students that have taken at least that many credits B. Show what is printed by the following program. (4 points) PriorityQueue<Integer> pQueue; pQueue = new PriorityQueueo(); Integer Il numbers = {39, 7, 41, 30, 17, 29, 17, 20); for(int x : numbers) pQueue.add(x); for(int i=0; i<4; i++) { int top = pQueue.poll(); System.out.print(top + ” “); Show transcribed image text Question 2: This question is about Maps and priority queues. A This question is about the basics of Maps (4 points) 1. Declare a map capable of name of a student and associating it with the number of credits that have completed. 2. Write a method that will take in a number of credits as a parameter and find all students that have taken at least that many credits B. Show what is printed by the following program. (4 points) PriorityQueue pQueue; pQueue = new PriorityQueueo(); Integer Il numbers = {39, 7, 41, 30, 17, 29, 17, 20); for(int x : numbers) pQueue.add(x); for(int i=0; i
Expert Answer
Answer to Question 2: This question is about Maps and priority queues. A This question is about the basics of Maps (4 points) 1. D…