For an experiment I have a webpage where I randomly generate a table of zeros and ones. The participants' task is to count the number of zeros in the table, and they can proceed to the next page only when they get the correct answer (fascinating task, indeed, which is intended to distract people's mind from our main tasks during a few minutes).
Since subjects participate from their own computer, I realized that they might simply copy the table and paste it in a software that can count characters, so that they have the answer automatically without any effort.
I would like to avoid that and make sure that they have to count the number of zeros themselves. I thought of:
disabling selection, as in this answer, but that does not prevent users from copying from the code, if I understood correctly: HTML page disable copy/paste
generating special zeros and ones that would not be recognized by the usual softwares, but I am worried that special characters would not be displayed correctly on some browsers
Do you have any ideas or suggestions? Thank you.