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 "CCESSchedule.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 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 findCoursesTaughtByString instructorName
Please test it with three different instructor names.
b 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 findInstructorsString courseName I
Please test it with three different course names.
c points Write a method that returns a List of unique course names taught between given time period.
public List findCoursesOfferedBetweeenLocalDateTime start,
LocalDateTime end
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
