| [Assessment] [Assignment 1] [Assignment 2] [Assignment 3] [Quiz] |
Assessment for COMP2031 will consist of three assignments, a mid-semester quiz, marks for laboratory class participation, and a final exam.
The various items of assessment will be handed out, due in, and marked according to the following timetable:
| Assessment | Out | Due | Marked |
|---|---|---|---|
| Assignment 1 | Wednesday 3 March | 1600 Friday 19 March | Week 5-6 |
| Assignment 2 | Monday 22 March | 1600 Friday 7 May | Week 13 |
| Assignment 3 | Wednesday 12 May | 1200 Monday 31 May | Week 14-15 |
| Quiz | 1000-1100 Wednesday 14 April | Week 9 | |
| Exam | Exam Timetable | ||
The following is a graphical view of the assessment timetable for the semester.
| Assignment1 | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Assignment2 | |||||||||||||||
| Assignment3 | |||||||||||||||
| Quiz | |||||||||||||||
| Week | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | ||
Marked assessment can be collected from your laboratory class in the week specified. Uncollected assessment will be available for collection from the department office from the following week.
The various items of assessment are weighted as follows:
| Theory | Practice | |||
|---|---|---|---|---|
| Quiz | 20 | Assignment 1 | 10 | |
| Exam | 80 | Assignment 2 | 60 | |
| Assignment 3 | 20 | |||
| Laboratories | 10 | |||
| Total | 100 | Total | 100 | |
Final grades will not be just the average of the theory and practice marks show above. Rather, they will be calculated from those marks using the following algorithm. The intent of the algorithm is to ensure that the final grade reflects both the student's theoretical knowledge and practical ability, and that a pass requires at least competence on both the theoretical and practical aspects of the unit.
/* Calculate a student's final grade given their theory
and practice marks. */
public static int finalGrade(int theory, int practice)
{
int worst = Math.min(theory, practice);
int average = (theory + practice) / 2;
/* In general, a student's grade will be the average
of their theory and practice components. However,
this is capped at 15 above their worst component. */
int capped = Math.min(average, worst + 15);
if (worst < 35) {
/* You must get at least 35 on both the theory and practice
components to pass or be eligible for a supplementary. */
return Math.min(capped, 44);
} else {
return capped;
}
}
Supplementary exams will be awarded only to those students who meet the following criteria:
| [Assessment] [Assignment 1] [Assignment 2] [Assignment 3] [Quiz] |