0 votes

copied from GT FB group

I know you can ask users to select a choice, but having "correct" answers outside of providing points doesn't seem available. I would like to make a list of items and a list of possible answers (some that are correct, some that are not), and allow users to pair up the correct connections.

by (5.8k points)

1 Answer

0 votes

An option to get comparable functionality would be to use a series of matching questions like in this example: https://www.guidedtrack.com/programs/13738/edit

>> prompts = ["pig", "lion", "zebra", "horse", "hedgehog"]
>> options = ["Carnivore", "Herbivore", "Omnivore"]

>> correct_answers = {"pig" -> "Omnivore", "lion" -> "Carnivore", "zebra" -> "Herbivore", "horse" -> "Herbivore", "hedgehog" -> "Omnivore"}

*maintain: Match animal with its diet

>> i = 1
*while: i <= prompts.size
	*question: {prompts[i]}
		*answers: options
		*save: answer
	*if: correct_answers[prompts[i]] = answer
		>> points = points + 5
		
	>> i = i + 1
		
You have {points}!

The questions are single-choice for simplicity but they could be *checkbox questions too. You will need to provide a way to score the options explicitly.

 

by (5.8k points)
Welcome to Guidedtrack Q&A, where you can ask questions and receive answers from other members of the community.
134 questions
144 answers
55 comments
40 users