Summary Page of slides completed

I am wondering if there is a way to CL a summary page that shows which slides (maybe as a percent or a list) students have completed / interacted with. I’d like an easy way to give participation credit for completing the Desmos (separate from correctness).

Thanks!

You can create a variable in each slide, say “complete”, and in each slide you can assign a value to that variable depending on interactions of the student with the slide (maybe he wrote something …).
In the last slide you show the table according to the values of the varoius “complete” variables …
sort of what they do here:


cellContent(1,1): 
  when not(note1.script.complete) ""
  when note1.script.incomplete "Incomplete"
  when note1.script.type= 3 "Completed*"
  when note1.script.type = 2 and note1.script.correct and not(note1.script.error) "Correct*"
  when note1.script.type =1 and note1.script.correct and not(note1.script.error) "Correct"
  otherwise "Incorrect"

Thank you!

Is there an example that I can access? I don’t have access to this curriculum?

Would you mind sharing the sameple CL for a slide? Like a slide with a free response, or a multiple choice?

Ok, say that you have a series of slides …
say slide number 6 is a multiple choice question, then the CL would be something like:

c = choice6

complete = c.isSelected(1) or c.isSelected(2) or c.isSelected(3) or c.isSelected(4) or c.isSelected(5)
correct = c.isSelected(1) and c.isSelected(3) and c.isSelected(4) and not(c.isSelected(2) or c.isSelected(5))

and in the last slide you would have a table and CL would be something like:

cellContent(6,1): 
  when not(note6.script.complete) ""
  when note6.script.complete and not(note6.script.correct) "Answered"
  when note6.script.correct "Correct"
  otherwise ""

Just to do something very basic.
Hope it helps.

For a math response you could set:


complete = not(isBlank(inpunt1.latex))

while for a free response you could set:


complete = not(isBlank(inpunt2.content))

Thank you so much!!

I combined it all into one cheat sheet set

1 Like

Nice … you could also use:
sampleSketch.sketch.strokeCount

to check if they did any drawings in the sketch component.