kikati
05-04-04, 07:47 AM
Assist me with my assignment. It goes like:
Three tutors and a course administrator share the teaching of a large module. The assessment for this module has three components - Assignment 1 (30%), Assignment 2(30%) and examination (40%). A table is maintained for all the students taking this module. Each row contains: a student name, marks for Assignment 1, assignment2 and examination, and an overall mark = 0.3 *(assignment1 mark +assignment2 mark) + 0.4 * examination mark.
Design and implement a class in java that enables the tutors and the course administrator to:
-Add a new student's name to the table.
-Remove a student's record from the table.
-Add or change a mark for an assignment or examination to the table.
-Give a student's name, display a student's details from the table.
-Calculate an overall mark for each student.
-Given an overall mark, list in alphabetical order the names all the students with that mark.
Three tutors and a course administrator share the teaching of a large module. The assessment for this module has three components - Assignment 1 (30%), Assignment 2(30%) and examination (40%). A table is maintained for all the students taking this module. Each row contains: a student name, marks for Assignment 1, assignment2 and examination, and an overall mark = 0.3 *(assignment1 mark +assignment2 mark) + 0.4 * examination mark.
Design and implement a class in java that enables the tutors and the course administrator to:
-Add a new student's name to the table.
-Remove a student's record from the table.
-Add or change a mark for an assignment or examination to the table.
-Give a student's name, display a student's details from the table.
-Calculate an overall mark for each student.
-Given an overall mark, list in alphabetical order the names all the students with that mark.