adding comprehension quesiton to self paced reading task

PennController for IBEX Forums Support adding comprehension quesiton to self paced reading task

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #9814
    baydaldogan
    Participant

    Hi,
    I have difficulty in adding comprehension questions to my experiment in self-paced reading task. Could you please help me with the syntax of this procedure, I want my experiments follows:

    Sample sentence: While Alex was watching TV, Sue was washing the dishes.
    Comprehension question: Who was watching TV? Alex Sue
    After clicking the button (Alex or Sue), the participant will proceed to the next sentence.And, I want to see the results of the comprehension questions in the results file.

    Looking forward to hearing from you,
    Kind regards
    Doğan

    #9836
    Jeremy
    Keymaster

    Hi Doğan,

    Apologies for the late reply. The native Ibex controller called DashedAcceptabilityJudgment readily provides these two options. Here’s an example of a PennController trial using it:

    newTrial(
        newController("DashedAcceptabilityJudgment", {
            s: "While Alex was watching TV, Sue was washing the dishes",
            mode: "self-paced reading",
            q: "Who was watching TV?",
            as: ["Alex", "Sue"]
        })
            .log()
            .print()
            .wait()
    )

    Jeremy

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.