Answer:
It can be seen below.
Step-by-step explanation:
In order to create a class, we need to specify the attributes and methods such that this specification will be enough to handle the requirements of the class. If we would like to create a class called Course, we need to think about its real world situations. Following attributes and operations can be a good fit for a Course class.
Attributes can be course code, course name, list of students enrolled for the course, the department of the course, and number of credits of the course.
Operations can be setters and getters for the attributes, adding students to the course, removing students from the course.