Question: Q: You have been provided with a CSV file CCES _ Schedule.csv . The file contains all course sections offered in CCES in this

Q: You have been provided with a CSV file "CCES_Schedule.csv". The file contains all course sections offered in CCES in this semester along with their enrollment and instructor details. This assignment is a sequence of your previous programming assignment.
a.(10 points) Write a method that returns a List of unique course names taught by a given instructor. The method should use a Map data structure to find this information.
public List findCoursesTaughtBy(String instructorName)\{)
Please test it with three (3) different instructor names.
b.(10 points) Write a method that returns a List of unique instructor names teaching a particular course. The method should use a Map data structure to find this information.
public List findInstructors(String courseName)\{ I
Please test it with three (3) different course names.
c.(10 points) Write a method that returns a List of unique course names taught between given time period.
```
public List findCoursesOfferedBetweeen(LocalDateTime start,
LocalDateTime end)(
)
```
Q: You have been provided with a CSV file "CCES _

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!