Difference between revisions of "Calculating Marks"
(→Supplementary exams) |
(fixed brackets) |
||
Line 45: | Line 45: | ||
This is equivalent to the following formula (fill in the correct cells in semester, exam and final) | This is equivalent to the following formula (fill in the correct cells in semester, exam and final) | ||
<pre> | <pre> | ||
− | =if(final<40, "Fail", if(final<45, if(or(semester>=50, exam>=50), "Supp", "Fail"), if(or(final<50, exam<40 | + | =if(final<40, "Fail", if(final<45, if(or(semester>=50, exam>=50), "Supp", "Fail"), if(or(final<50, exam<40), "Supp", "Pass"))) |
</pre> | </pre> | ||
Revision as of 12:25, 23 November 2010
Contents
Calculating marks
Remember that you need to follow the Undergraduate external process while doing the marks.
Rounding
Make sure that you round the semester mark, the exam mark and the final mark and rework with integer percentages (avoid the use of the Excel Percentage type, as this hides some common errors). Useround(mark/total*100, 0)
Supplementary exams
Always check the relevant yearbook. The following description is from the 2010 Yearbook.
In the School of Engineering a supplementary examination is only granted in instances where:
- A final mark of between 45% and 49% was achieved;
- A final mark of between 40% and 44% was achieved and where the candidate also achieved either a semester mark or an examination mark of 50% or higher;
- A pass mark has been obtained, but the required subminimum in the examination section of the module or divisions thereof has not been obtained.
- A final mark of between 40% and 49% has been obtained in first-year modules on 100 level.
In most cases the third point above translates to simple rule that a supp must be awarded if the final mark is a pass mark but the exam mark is less than 40.
This is summarised in the following picture (assuming the exam and semester marks count 50% each toward the final mark):
The following VBA function can be used to do the calculation in Excel:
function engineeringstatus(semester as integer, exam as integer, final as integer) as string ' Criteria for assessing supplementary exams, according to engineering yearbook 2010 ' Author: Carl Sandrock if final < 40 then engineeringstatus = "Fail" elseif final < 45 then if semester >= 50 or exam >= 50 then engineeringstatus = "Supp" else engineeringstatus = "Fail" end if elseif final < 50 or exam < 40 then engineeringstatus = "Supp" else engineeringstatus = "Pass" end if end function
This is equivalent to the following formula (fill in the correct cells in semester, exam and final)
=if(final<40, "Fail", if(final<45, if(or(semester>=50, exam>=50), "Supp", "Fail"), if(or(final<50, exam<40), "Supp", "Pass")))
Calculation of the final supplementary examination mark
- The semester mark is retained and the final mark is calculated as the weighted average of the supplementary examination mark and the semester mark, in accordance with the formula as published in the study manual of the specific module, with the proviso that the maximum final mark awarded may be no more than 50%. The only exception to this rule is in the case of first-year modules on first-semester level, where the semester mark is not considered, and where the supplementary examination mark is taken as the final mark, with the proviso that the maximum final mark awarded may be no more than 50%.
- All other pass requirements, as published in the study manual of each specific module, remain so and are applicable during the determination of the final result of a supplementary examination in the module.
Codes
Several codes are used to communicate special status in the CSV file that Admin expects to get from you after you have calculated the marks.
Semester | Examination | Final | Remark | |
---|---|---|---|---|
Examination refusal | Mark | 988 | 988 | |
Unknown | 987 | 987 | 987 | |
Absent from exam | Mark | 987 | 987 | |
Mark not avalable - Finance | Mark | xxx | xxx | |
Mark not avalable - Library | Mark | yyy | yyy | |
Mark not avalable - Both | Mark | zzz | zzz | |
Aegrotat exam | Mark | 987 | 987 | 994 |
Supplementary | Mark | Mark | Mark | 999 |
Subminimum | Mark | Mark | 992(only if above 50%) | 999 |
Promote(only School of IT) | Mark | 973 | 973 | |
Only postgraduate: | ||||
Mark not yet available | 989 | 989 | 989 | |
Did not complete | 995 | 995 | 995 |