|
|
|
|
|
by elarkin
5018 days ago
|
|
I was a TA for computer science classes. I barely read variable names when grading. It was quicker to compile/run and then check over the structure of the program. Also keep in mind that if you're grading 50 people like I was, you won't remember what variables the students used between assignments. The stuff they would do to throw me off the trail wouldn't help much at all. If I found a student had copied from a neighbor or whatever, I'd ask them both what had happened. It was uncommon that they would deny it. I'd tell the professor and mark the assignment a zero. After that, it was between the students and the professor. Try it yourself, write a small program, perhaps a script to read a CSV of numbers and do a pivot table or something, then copy it and use whatever technique you like to hide the copying. Now read them back to back. Give no more than 1 minute to each (since they both compile and pass tests). You'll spot the copying immediately. Disclaimer: I did TA work for undergraduate stuff; typically for students in liberal arts and sciences just trying to get through their comp-sci requirements. |
|