﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Millisecond Forums » Millisecond Forums » Inquisit 5  » Cheating Task</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Sun, 20 Sep 2026 05:24:00 GMT</lastBuildDate><ttl>20</ttl><item><title>Cheating Task</title><link>https://forums.millisecond.com/Topic22710.aspx</link><description>Hello,&lt;br/&gt;&lt;br/&gt;sorry if this isn't the correct place to ask:&lt;br/&gt;&lt;br/&gt;Are there any Task that would allow me to measure and compare cheating amongst participants?&lt;br/&gt;&lt;br/&gt;What I'm looking for is a Task that will provide me with the option to measure cheating amongst participants. &lt;br/&gt;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:&lt;br/&gt;&lt;a href="https://www.researchgate.net/publication/5668199_The_Value_of_Believing_in_Free_Will_Encouraging_a_Belief_in_Determinism_Increases_Cheating"&gt;https://www.researchgate.net/publication/5668199_The_Value_of_Believing_in_Free_Will_Encouraging_a_Belief_in_Determinism_Increases_Cheating&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;Basically arithmetics and correct answers being displayed when pressing the space bar and the only thing measured is the number of spacebar presses.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;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...&lt;br/&gt;&lt;br/&gt;Thank you for for your time.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;</description><pubDate>Thu, 26 Oct 2017 12:32:16 GMT</pubDate><dc:creator>gregciezak</dc:creator></item><item><title>RE: Cheating Task</title><link>https://forums.millisecond.com/Topic22724.aspx</link><description>&lt;div data-id="22721" class="if-quote-wrapper" unselectable="on" data-guid="1509046303265"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="22721" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="22721" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="22721" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;gregciezak - Thursday, October 26, 2017&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-22721"&gt;&lt;div class="if-quote-message-margin"&gt;That...is amazing!&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Now, I'm sorry for doing the "Give them a finger, and they'll take the whole hand" cliche:&lt;br/&gt;&lt;br/&gt;how would I make it so the answers would display only after the participant presses the spacebar?&lt;br/&gt;&lt;br/&gt;Essentialy that would change the scenario to this:&lt;br/&gt;&lt;br/&gt;"Please don't press the spacebar as there's a glitch that will display the answer when it's pressed!&amp;nbsp;&lt;br/&gt;(1) Display a math problem.&lt;br/&gt;The participant can then provide an answer to continue to the next problem (any, doesn't have to be correct) &lt;strong&gt;OR &lt;/strong&gt;press the spacebar (once) to initiate the "glitch". &lt;br/&gt;Spacebar presses are then recorded for each problem seperately (so pressing the spacebar 10x times during problem would still count as "1", 5x times during problem #2 counts as "2" and so on)&lt;br/&gt;&amp;nbsp;&lt;br/&gt;Is...is this as complicated as it seems or do you just have to get used to it?&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="22721"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;This shouldn't be particularly complicated. You could do something like this:&lt;br/&gt;&lt;br/&gt;&amp;lt;text mathproblem&amp;gt;&lt;br/&gt;/ items = problems&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text mathanswer&amp;gt;&lt;br/&gt;/ items = answers&lt;br/&gt;/ select = text.mathproblem.currentindex&lt;br/&gt;/ position = (50%, 55%)&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item problems&amp;gt;&lt;br/&gt;/ 1 = "1 + 2 + 3 + 4 = ?"&lt;br/&gt;/ 2 = "5 + 6 + 7 + 8 = ?"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item answers&amp;gt;&lt;br/&gt;/ 1 = "Answer: 10"&lt;br/&gt;/ 1 = "Answer: 26"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block mathblock&amp;gt;&lt;br/&gt;/ trials = [1-2=showmathproblem]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial showmathproblem&amp;gt;&lt;br/&gt;/ ontrialend = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(trial.showmathproblem.response == 57) values.spacebarcount += 1;&lt;br/&gt;]&lt;br/&gt;/ stimulustimes = [0=clearscreen, mathproblem]&lt;br/&gt;/ validresponse = (anyresponse)&lt;br/&gt;/ responsemessage = (57, mathanswer, 2000)&lt;br/&gt;/ branch = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; openended.entermathanswer&lt;br/&gt;]&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;openended entermathanswer&amp;gt;&lt;br/&gt;/ position = (50%, 60%)&lt;br/&gt;&amp;lt;/openended&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;values&amp;gt;&lt;br/&gt;/ spacebarcount = 0&lt;br/&gt;&amp;lt;/values&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;data&amp;gt;&lt;br/&gt;/ columns = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; date time subject group blocknum blockcode trialnum trialcode stimulusitem response latency correct&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.spacebarcount&lt;br/&gt;]&lt;br/&gt;/ separatefiles = true&lt;br/&gt;&amp;lt;/data&amp;gt;&lt;br/&gt;</description><pubDate>Thu, 26 Oct 2017 12:32:16 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title /><link>https://forums.millisecond.com/Topic22721.aspx</link><description>That...is amazing!&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Now, I'm sorry for doing the "Give them a finger, and they'll take the whole hand" cliche:&lt;br/&gt;&lt;br/&gt;how would I make it so the answers would display only after the participant presses the spacebar?&lt;br/&gt;&lt;br/&gt;Essentialy that would change the scenario to this:&lt;br/&gt;&lt;br/&gt;"Please don't press the spacebar as there's a glitch that will display the answer when it's pressed!&amp;nbsp;&lt;br/&gt;(1) Display a math problem.&lt;br/&gt;The participant can then provide an answer to continue to the next problem (any, doesn't have to be correct) &lt;strong&gt;OR &lt;/strong&gt;press the spacebar (once) to initiate the "glitch". &lt;br/&gt;Spacebar presses are then recorded for each problem seperately (so pressing the spacebar 10x times during problem would still count as "1", 5x times during problem #2 counts as "2" and so on)&lt;br/&gt;&amp;nbsp;&lt;br/&gt;Is...is this as complicated as it seems or do you just have to get used to it?&lt;br/&gt;</description><pubDate>Thu, 26 Oct 2017 10:43:58 GMT</pubDate><dc:creator>gregciezak</dc:creator></item><item><title>RE: Cheating Task</title><link>https://forums.millisecond.com/Topic22712.aspx</link><description>&lt;div data-id="22710" class="if-quote-wrapper" unselectable="on" data-guid="1508959340675"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="22710" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="22710" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="22710" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;gregciezak - Wednesday, October 25, 2017&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-22710"&gt;&lt;div class="if-quote-message-margin"&gt;Hello,&lt;br/&gt;&lt;br/&gt;sorry if this isn't the correct place to ask:&lt;br/&gt;&lt;br/&gt;Are there any Task that would allow me to measure and compare cheating amongst participants?&lt;br/&gt;&lt;br/&gt;What I'm looking for is a Task that will provide me with the option to measure cheating amongst participants. &lt;br/&gt;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:&lt;br/&gt;&lt;a href="https://www.researchgate.net/publication/5668199_The_Value_of_Believing_in_Free_Will_Encouraging_a_Belief_in_Determinism_Increases_Cheating"&gt;&lt;a href="https://www.researchgate.net/publication/5668199_The_Value_of_Believing_in_Free_Will_Encouraging_a_Belief_in_Determinism_Increases_Cheating"&gt;https://www.researchgate.net/publication/5668199_The_Value_of_Believing_in_Free_Will_Encouraging_a_Belief_in_Determinism_Increases_Cheating&lt;/a&gt;&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;Basically arithmetics and correct answers being displayed when pressing the space bar and the only thing measured is the number of spacebar presses.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;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...&lt;br/&gt;&lt;br/&gt;Thank you for for your time.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="22710"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;The description in that article is a bit low on details, but here's how to build something like this:&lt;br/&gt;&lt;br/&gt;&amp;lt;text mathproblem&amp;gt;&lt;br/&gt;/ items = problems&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text mathanswer&amp;gt;&lt;br/&gt;/ items = answers&lt;br/&gt;/ select = text.mathproblem.currentindex&lt;br/&gt;/ position = (50%, 55%)&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item problems&amp;gt;&lt;br/&gt;/ 1 = "1 + 2 + 3 + 4 = ?"&lt;br/&gt;/ 2 = "5 + 6 + 7 + 8 = ?"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item answers&amp;gt;&lt;br/&gt;/ 1 = "Answer: 10"&lt;br/&gt;/ 1 = "Answer: 26"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block mathblock&amp;gt;&lt;br/&gt;/ trials = [1-2=showmathproblem]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial showmathproblem&amp;gt;&lt;br/&gt;/ ontrialbegin = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.spacebarcount = 0;&lt;br/&gt;]&lt;br/&gt;/ stimulustimes = [0=clearscreen, mathproblem; 10000=mathanswer]&lt;br/&gt;/ validresponse = (57)&lt;br/&gt;/ isvalidresponse = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (trial.showmathproblem.response == 57){&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; values.spacebarcount +=1;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }; false;&lt;br/&gt;]&lt;br/&gt;/ timeout = 15000&lt;br/&gt;/ beginresponsetime = 0&lt;br/&gt;/ branch = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; openended.entermathanswer&lt;br/&gt;]&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;openended entermathanswer&amp;gt;&lt;br/&gt;/ position = (50%, 60%)&lt;br/&gt;&amp;lt;/openended&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;values&amp;gt;&lt;br/&gt;/ spacebarcount = 0&lt;br/&gt;&amp;lt;/values&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;data&amp;gt;&lt;br/&gt;/ columns = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; date time subject group blocknum blockcode trialnum trialcode stimulusitem response latency correct&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.spacebarcount&lt;br/&gt;]&lt;br/&gt;/ separatefiles = true&lt;br/&gt;&amp;lt;/data&amp;gt;&lt;br/&gt;&lt;br/&gt;What it does: &lt;br/&gt;(1) Display a math problem.&lt;br/&gt;(2) After 10 seconds the "glitch" occurs, i.e. the answer is displayed.&lt;br/&gt;&lt;br/&gt;During (1) and (2) the number of space bar presses is continuously counted. The number is logged in values.spacebarcount.&lt;br/&gt;&lt;br/&gt;(3) 5 seconds later, a prompt appears where participants are supposed to enter "their" answer.&lt;br/&gt;&lt;br/&gt;Hope this helps.&lt;br/&gt;</description><pubDate>Wed, 25 Oct 2017 12:43:12 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>