Hacker News new | ask | show | jobs
by saruken 1889 days ago
But isn't "cheating" the norm in real-world jobs too? It's rare that I or any of the developers I work with complete a task without looking something up or asking a question of someone more knowledgeable.

Seems to me the problem is how the assignments are posed – If the goal is to create a program that does X, and I can do that by copy/pasting or tweaking something from StackOverflow, have I not completed the goal? But if what you actually want is for me to understand all of the principles behind a program that does X, well that's a very different thing. And the assignment should be set up differently.

It feels like Proctorio and similar solutions are treating a symptom of the real problem, which is that the way a lot of higher learning is administered is inherently flawed. And until we fix that, won't cheating and cheating detection be the same Coast-Guard-vs-smugglers arms race it's always been?

2 comments

> But isn't "cheating" the norm in real-world jobs too? It's rare that I or any of the developers I work with complete a task without looking something up or asking a question of someone more knowledgeable.

One part of one my math exams in a previous university was (I feel like) modeled around this idea, where you were allowed to use a non-programmable (graphical) calculator and to bring basically any written material in to help yourself solve that part of the exam. Of course there were some restrictions: none of the solutions to the various homework assignments etc. That part alone for the ~2 hours of the whole exam would've been nice if there hadn't been the other half: no calculator, no helping materials apart from those maybe provided on the exam sheet. This part (of course) was the one containing the questions about specific definitions, one or more things to write a proof on and calculating things like double and/or triple integrals, deriving complicated expressions.

In other courses (Databases 1 and 2, Web Dev) at my 2nd/current uni with some specific professors there was a clause that you could bring with you help in the form of: "DIN A4 sheet paper, hand-writing on one side, non-copied" and the professor or the TA if one was present would pass through the rows during the exam to check the student ID, have the student sign a presence sheet and whether the help sheet was compliant (also if maybe there were some answers to the exam), signed that help sheet and would collect that together with the exam upon completion/timeout.

Although our course was only ~80-90 people at the start of my first and ~30 at the start of my current uni, so we had to be thrown together with some other disciplines/outlines ("Studiengänge" in Germany) for exams of the same courses to have an exam that made sense for everyone.

Please don't muddy the waters like that. I'm sure you understand perfectly well that when a job asks you to do X, they just want to get X done, whereas when a school asks you to do X, they want to test your skills or make you practice.
Isn't the purpose of school to train you to where you can do X for a company? If standard practice in the field is to look that up, I fail to see the value in forcing you to remember how to do X so that you can later forget it and end up Googling it anyways.

I generally find it silly to teach things that you can adequately grasp from Google in 10 minutes. That's not to imply that anything can be learned from Google in 10 minutes, but I find it dumb to spend time on that in a college. Learning how to implement on optimized bubble sort? That's kind of dumb; in the real world you just use an existing one. It's almost certainly faster than what you would have come up with. Learning recursion? Yeah, that probably deserves to be taught because some people really struggle with it.

> If standard practice in the field is to look that up, I fail to see the value in forcing you to remember how to do X so that you can later forget it and end up Googling it anyways.

I agree 100%. I also don't see the value in forcing people to memorize googleable facts. It's frustrating to see schools implement curricula like that. However, I disagree with your implication here. You're implying that because schools make you learn stupid things, everybody should just cheat. What's the point of that, exactly? You think the curricula is not optimized well, so you would rather reduce the entire institution to a diploma mill, instead of simply learning with the unoptimized programme?

> Isn't the purpose of school to train you to where you can do X for a company?

That may be true for a vocational school, but for a computer science programme at a university, it is not true at all. If you look up the stated purpose of computer science programmes, they are about educating people for the sake of knowledge itself, not to achieve an ulterior purpose like producing a useful workforce.

> Learning how to implement on optimized bubble sort? That's kind of dumb; in the real world you just use an existing one.

If you memorize a bubble sort algorithm without understanding, just to be able to repeat it back verbatim in the exam, I agree that's dumb (and it's also dumb on the school's part to create a programme that incentivizes such behavior). However, that's not the only way to learn bubble sort. You can also approach it from an "algorithm design" perspective, and strive to develop the skills needed to design and work with algorithms. That's not dumb at all. In fact, I would argue that's one of the core skills that a computer science education should provide.

> in the real world you just use an existing one.

No, you wouldn't. You would never use a bubble sort in the real world, because it has O(n^2) time complexity and it has no redeeming qualities when compared to other algorithms.

So let me get this straight: if someone at work asks you to "implement sorting for these results", you might just google "bubble sort java", copypaste code, test that it works, and ship it? And you don't think there's any value in learning what properties these algorithms have or how they work? Don't care, don't wanna learn, cheat through school, end up using bubble sort in production. Great. That's exactly the type of attitude that causes 5 minute startup load times in GTA.