Hello can someone good at
java programming help me turn this UML class diagram into code here are the System requirements it should help you understand the class diagram that I have attached:
Each Course object maintains a list of the students on that course and the lecturer who
has been assigned to teach that course.
The Course object has behaviour that allow the adding and removing of students from
the course, assigning a teacher, getting a list of the currently assigned students, and the
currently assigned teacher.
Teachers are modelled as Lecturer objects. As a lecturer may teach more than one
course there is an association between Course and Lecturer. The taughtBy relationship
shows that a Course only has a single teacher, but that a lecturer may teach several
Courses.
Each Lecturer object also maintains a list of the Courses that it teaches.
There is a similar relationship between Course and Student. A course is attended by
zero or more Students, and a Student may attend multiple courses.
both Student and Lecture classes implement the Person interface.
item.
Rewrite a new class diagram to following: each student in a course has to take an exam
worth 60 percent and 4 courseworks worth 10 percent each. for each student taking the
course you will have to compute the course average mark.