Solved
Not indicate correct answer when showing score at end of survey
I've set up the survey as a multiple choice quiz. I would like students to know which questions they had wrong (because they can retake the entire quiz - although their questions may vary because they are a random selection from a block). When showing the score at the end though, for each question, the correct answer is in green and the incorrect answer they chose is shown in red. I don't want there to be an indication of what the correct answer is. It would be fine if all they they saw was the question stem (and not the answer choices) and just whether they were correct or incorrect for that question.
Is there a way to do this?
Best answer by Anonymous
Hello @jc7 ,
If you don't want the score then please do the following:
Step1:Paste the following code to the look and feel -> advanced -> add custom css
.Skin .Grading .ChoiceStructure .Icon {
width: 18px;
height: 17px;
float: left;
margin-right: 5px;
display:none;
}
.Skin .Grading .ChoiceStructure .Selected .Incorrect, .Skin .Grading .Incorrect {
color: #bf8d8d;
}
.Skin .Grading .ChoiceStructure .Selected .Incorrect, .Skin .Grading .Incorrect {
color: #000;
}
.Skin .Grading .ChoiceStructure .Incorrect {
color: #000;
}
.Skin .Grading .ChoiceStructure .Selected {
font-weight: 100;
}
.Skin .Grading .ChoiceStructure .Correct {
color: #000;
}
.Skin .Grading .ChoiceStructure .Selected .Correct, .Skin .Grading .Correct {
color: #000;
}
Step 2: Paste the attach code(img_script.txt) in look and feel -> advanced -> header(edit) -> html view(<>)!
Output
!
View original

Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.