+xHello,
sorry if this isn't the correct place to ask:
Are there any Task that would allow me to measure and compare cheating amongst participants?
What I'm looking for is a Task that will provide me with the option to measure cheating amongst participants.
A good example would be a task (although I don't know what program was used), would be the one used in Experiment 1 of this study:
https://www.researchgate.net/publication/5668199_The_Value_of_Believing_in_Free_Will_Encouraging_a_Belief_in_Determinism_Increases_CheatingBasically arithmetics and correct answers being displayed when pressing the space bar and the only thing measured is the number of spacebar presses.
It doesn't have to be this task specifically, just something that would allow measuring cheating. Ideally something "ready to go", as I'm useless at programming...
Thank you for for your time.
The description in that article is a bit low on details, but here's how to build something like this:
<text mathproblem>
/ items = problems
/ erase = false
</text>
<text mathanswer>
/ items = answers
/ select = text.mathproblem.currentindex
/ position = (50%, 55%)
/ erase = false
</text>
<item problems>
/ 1 = "1 + 2 + 3 + 4 = ?"
/ 2 = "5 + 6 + 7 + 8 = ?"
</item>
<item answers>
/ 1 = "Answer: 10"
/ 1 = "Answer: 26"
</item>
<block mathblock>
/ trials = [1-2=showmathproblem]
</block>
<trial showmathproblem>
/ ontrialbegin = [
values.spacebarcount = 0;
]
/ stimulustimes = [0=clearscreen, mathproblem; 10000=mathanswer]
/ validresponse = (57)
/ isvalidresponse = [
if (trial.showmathproblem.response == 57){
values.spacebarcount +=1;
}; false;
]
/ timeout = 15000
/ beginresponsetime = 0
/ branch = [
openended.entermathanswer
]
</trial>
<openended entermathanswer>
/ position = (50%, 60%)
</openended>
<values>
/ spacebarcount = 0
</values>
<data>
/ columns = [
date time subject group blocknum blockcode trialnum trialcode stimulusitem response latency correct
values.spacebarcount
]
/ separatefiles = true
</data>
What it does:
(1) Display a math problem.
(2) After 10 seconds the "glitch" occurs, i.e. the answer is displayed.
During (1) and (2) the number of space bar presses is continuously counted. The number is logged in values.spacebarcount.
(3) 5 seconds later, a prompt appears where participants are supposed to enter "their" answer.
Hope this helps.