Question: Complete the following coding in java Write a program that displays information about the Computer Science semester schedule. Your program will require two Java files:
Write a program that displays information about the Computer Science semester schedule. Your program will require two Java files: your main program and a Course class. The Course class must contain the following class instance data: data Course nu CRN Instructor's last name Days the course is taught Start time of the class End time of the class Title of the course example COMP163 20781 Williams MWF 1000 1050 Intro to Computer Programming All data should be the data values. No other methods are required if you make the data values public. represented as strings. Your class must include a constructor method that initializes all The main program should read the file CScourses.txt and create a Course object for each course in the file. Each line of data in the file has the course information in the same order as shown above Except for the title of the class, all data are one word separated by white space As your program reads each line of the file, the Course object should be put into a hash table. A hash table is a data structure that allows you to retrieve information based on a key. Your program will put the Course objects in the table using the course number as the key. You will need to create a hash table object at the beginning of your program with java.util.Hashtable
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
