Mon, Apr 26:
Hey there, happy CS110 farmers. The CS110 CA's finished grading the filesystem self-assessments this morning,
and I just quietly published all of the grades to Gradescope.
The median grade was a 17 out of 20, and the Gradescope-hosted self-assessments should now display not only your answer but my own as well.
Remember that all scores less than 20 are curved by scaling-to-100/taking-the-square-root/scaling-to-100-again.
Look at Jerry handrolling his own python script on a Monday 50 minutes before lecture that prints out the curved scores for everyone:
>>> for raw in range(20, 9, -1):
... percentage = 5 * raw
... root = percentage ** 0.5
... curved = 10 * root
... print("Your raw score of {0:d} is really a {1:.2f}".format(raw, curved))
...
Your raw score of 20 is really a 100.00
Your raw score of 19 is really a 97.47
Your raw score of 18 is really a 94.87
Your raw score of 17 is really a 92.20
Your raw score of 16 is really a 89.44
Your raw score of 15 is really a 86.60
Your raw score of 14 is really a 83.67
Your raw score of 13 is really a 80.62
Your raw score of 12 is really a 77.46
Your raw score of 11 is really a 74.16
Your raw score of 10 is really a 70.71
>>>