Problem set assessment: Difference between revisions
Mr. MacKenty (talk | contribs) |
Mr. MacKenty (talk | contribs) |
||
Line 15: | Line 15: | ||
* To what extent does your code implement the features required by our specification? | * To what extent does your code implement the features required by our specification? | ||
* To what extent is there evidence of effort? | * To what extent is there evidence of effort? | ||
'''Correctness''' | '''Correctness''' | ||
* To what extent did your code meet specifications? | * To what extent did your code meet specifications? | ||
* To what extent did your code meet unit tests? | * To what extent did your code meet unit tests? | ||
'''Design''' | '''Design''' | ||
Line 29: | Line 27: | ||
* To what extent is your code using functions appropriately? | * To what extent is your code using functions appropriately? | ||
* Hint: code that is short is often a proxy for good design (but not always) | * Hint: code that is short is often a proxy for good design (but not always) | ||
'''Style''' | '''Style''' | ||
Line 36: | Line 33: | ||
* To what extent are your variables well named? | * To what extent are your variables well named? | ||
* To what extent do you adhere to [[style guide]]? | * To what extent do you adhere to [[style guide]]? | ||
== References == | == References == |
Revision as of 09:24, 22 September 2016
Introduction[edit]
Problem sets are designed to challenge you to apply your knowledge of computer science. Problem sets can be completed in many different programming languages. All problem sets are counted as summative grades. This page describes how problem sets are graded.
4 axes in a good answer[edit]
Each axis is graded independently.
Scope
- To what extent does your code implement the features required by our specification?
- To what extent is there evidence of effort?
Correctness
- To what extent did your code meet specifications?
- To what extent did your code meet unit tests?
Design
- To what extent is this code efficient?
- To what extent is your code eliminating repetition?
- To what extent is your code using functions appropriately?
- Hint: code that is short is often a proxy for good design (but not always)
Style
- To what extent is your code formatted?
- To what extent are your variables well named?
- To what extent do you adhere to style guide?