Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » Help Me Make a Quiz!
- CupcakeCoder1606
-
Scratcher
15 posts
Help Me Make a Quiz!
How do you do quizzes? I SO want to make one!
- ShinigamiBlacky
-
Scratcher
100+ posts
Help Me Make a Quiz!
1) Make a few list; one with all the questions, one with the right answer and any amount of possible answers
2) Then use a text engine to write item QuestionNumber of all the Questionand Answer lists
3.1)Then make Buttons (you should write the text of the answers in there)
3.2) if clicked they should check whether the number you assing to is is equal to item QuestionNumber of the Right Answer list
3.3) if clicked it should change QuestionNumber by one
2) Then use a text engine to write item QuestionNumber of all the Questionand Answer lists
3.1)Then make Buttons (you should write the text of the answers in there)
3.2) if clicked they should check whether the number you assing to is is equal to item QuestionNumber of the Right Answer list
3.3) if clicked it should change QuestionNumber by one
Last edited by ShinigamiBlacky (July 23, 2018 14:46:40)
- deck26
-
Scratcher
1000+ posts
Help Me Make a Quiz!
For a multiple choice quiz try my template https://scratch.mit.edu/projects/105090404/
If it's not multiple choice you need to be sure that the form of the answer is obvious - eg if you want the answer to be ‘banana’ is there a chance, because of the wording of your question, that they'll answer ‘a banana’ or ‘bananas’. Multiple choice is less work.
If it's not multiple choice you need to be sure that the form of the answer is obvious - eg if you want the answer to be ‘banana’ is there a chance, because of the wording of your question, that they'll answer ‘a banana’ or ‘bananas’. Multiple choice is less work.
- loganvilla
-
Scratcher
28 posts
Help Me Make a Quiz!
Pretty simple, all you need is to use “ask” blocks. Check my example below:
ask [Question] and wait
if <<(answer) = [The correct answer]>> thenYou replace all the necessary words, and change the output from the then block.
say [Correct!] for (2) secs
end
- Discussion Forums
- » Help with Scripts
-
» Help Me Make a Quiz!
