Create a class named CollegeCourse that includes data fields that hold the department(for ex, "ENG"), the course number (for ex, 101), the credits(for ex, 3),and the fee for the course(for ex, $360). All of the fields are required as arguments to the constructor, except for the fee, which is find outd at $120 per credit hour. Include a display() method that displays the course data. Create a subclass named LabCourse that adds $50 to the course fee. Override the parent class display() method to indicate that the course is a lab course and to display all the data. prepare an application named UseCourse that prompts the user for course information. BIO, CHM, CIS, or PHY. If the user enters any other department, create a CollegeCourse that does not include the lab fee. Then display the course data. Save the files as CollegeCourse.java, LabCourse.java, and UseCourse.java.