Skip to main content
gmatch8750
Participating Frequently
February 23, 2017
Question

Retake a Quiz

  • February 23, 2017
  • 1 reply
  • 180 views

I have graded quiz questions that are embedded in my course. I would like for the learner to retake the quiz questions without having to remediate ( or go through the course content between the embedded quiz questions).

Is there a way to program the Retake Quiz question to branch off, or does anyone have another idea that will work?

Thanks!

This topic has been closed for replies.

1 reply

Lilybiri
Legend
February 23, 2017

Retake is a built in functionality, but you have to use the Retake button on the Score slide. All answers will be reset, correct or wrong and the user will automatically be directed to the first question slide.

If you want to skip the content slides in between quiz slides, you can use a conditional advanced action, On Enter for each content slide or for the first of a sequence of content slides. Use the system quizzing variable cpQuizInfoAttempts. During a Retake attempt, it will have a value of at least 2. The conditional action will be something like this:

IF cpQuizInfoAttempts is greater than 1

   Jump to .....                       where you indicate the next question slide as target

ELSE

   Continue

If you have a lot of slides to skip, maybe it is better to have the same advanced action On Enter for all content slides:

IF cpQuizInfoAttempts is greater than 1

   Go to Next Slide

ELSE

   Continue