[SOLVED] COP 4814 Lab 8 - Students and Courses Part 2

15.00 $

Programming resource
Digital learning resource
Category:
Practical programming resource
Suitable for guided study and reference
Tutor guidance available when needed

Description

5/5 - (4 votes)
(Java Maps and Lists) You created the Students and Courses application (Part 1) in Lab 1.

Now you are asked to improve it in the following ways:

(1) Create a TreeMap of course names. Each map entry should contain a single integer that counts the number of students who have enrolled in that course.

(2) Display the map in ascending order by course name, showing each course name and its enrollment count.

Note: You cannot directly increment the enrollment count in a map entry. Instead, retrieve the existing count using the get() method, add 1 to the count, and then insert the key and updated  enrollment count back into the map by calling the put() method.

The final test program should display the following output with different names and courses.

Resource details

Understand the Task Before You Use the Resource

Review the requirements, identify the programming concepts involved, study the implementation and test your understanding with your own examples and modifications.