Skip to main content
Shonenhikada
Participating Frequently
June 25, 2015
Answered

Grades for Quiz

  • June 25, 2015
  • 1 reply
  • 252 views

I was wondering if there is a way for the user to get a certain grade based on their quiz results for SPSS in the score board result via a caption.For example A (80-100), B (70-80), C (61-69) and so forth.

    This topic has been closed for replies.
    Correct answer Lilybiri

    Define a user variable v_grade. Insert it in a text container on the score slide.

    Create a conditional advanced action, to be triggered On Enter for the Score Slide. It will have several decisions

    Decision AGrade

        IF cpInfoPercentage is greater or equal to 80

              Assign v_grade with A

    Decision BGrade

    IF cpInfoPercentage is greater or equal to 70  AND

          cpInfoPercentage is less than 80

                Assign v_grade with B

    Decision CGrade

    IF cpInfoPercentage is greater or equal to 60  AND

          cpInfoPercentage is less than 70

                Assign v_grade with C

    .....

    1 reply

    Lilybiri
    Legend
    June 25, 2015

    You can use an advanced conditional action and a variable to store the

    grade. Is it meant to show the grade?

    Shonenhikada
    Participating Frequently
    June 25, 2015

    Yes. I was thinking of having a text caption to display the grades in the score slide, and i would like for the grade in the text caption to change based on cpInfoPercentage of user. Is this possible ?

    Lilybiri
    LilybiriCorrect answer
    Legend
    June 25, 2015

    Define a user variable v_grade. Insert it in a text container on the score slide.

    Create a conditional advanced action, to be triggered On Enter for the Score Slide. It will have several decisions

    Decision AGrade

        IF cpInfoPercentage is greater or equal to 80

              Assign v_grade with A

    Decision BGrade

    IF cpInfoPercentage is greater or equal to 70  AND

          cpInfoPercentage is less than 80

                Assign v_grade with B

    Decision CGrade

    IF cpInfoPercentage is greater or equal to 60  AND

          cpInfoPercentage is less than 70

                Assign v_grade with C

    .....