C212 Exam Advice
- Double check your work. Be sure all code is syntactically
correct and trace its run-time behavior. If you have time,
triple check your work.
- Avoid style crimes and misdemeanors.
- Write in a style in which the distinction between upper
and lower case is clear: Java is case sensitivity. This
time grading was lenient about this.
- Unless it substantially simplifies the problem, if you
make essentially the same mistake multiple times in the
same question it will only be marked and points deducted
the first time.
- Do not commit style crimes or misdemeanors.
- If you provide more than one solution to a problem, only
what appears to be the first or main one will be graded (unless
it is crossed out).
- Do exactly what the problem says. For example, if your
are to define a method named doit,
define a method named doit, not one
named something else you might prefer, like illDoIt.
- Avoid stray marks that might be mistaken for a misplaced
semicolon or other punctuation.