How to Create a Multiple Choice Quiz in Microsoft PowerPoint
Microsoft power point is one of the office packages offered by Microsoft to create various presentation slides. Not only that, it turns out that Microsoft Power Point can also be used to make quizzes like quiz games that are no less interesting.
This application is widely used by office and business people, educators, students, and trainers.
Currently, most educators or educators use Microsoft Power Point as a presentation tool or to create learning media.
How to Create a Multiple Choice Quiz in Microsoft PowerPoint
In the use of Power Point, Visual Basic Application (VBA) can be used to make evaluation scores using Power Point, which has been widely developed. Here’s how to create a multiple choice quiz in Microsoft PowerPoint:
1. First, open Microsoft Powerpoint on your computer or laptop, then specify the theme of the quiz slide to be created.
2. Then make a quiz question with an example slide like this. See the example in the picture.
3. Then on slides 2,3,4 and so on, make multiple choice quiz questions like the following example, See the example in the picture.
4. Then on the last slide, make a slide to check the answer scores from the quiz, as in the following slide example. See the example in the picture.
5. When all the contents of the slide have been created, then press alt+f11. Then a window will appear Microsoft Visual Basic. See the example in the picture.
6. Then in Microsoft Visual Basic, click Insert then select Module. See the example in the picture.
7. Before filling the Module. You have to type a bit of program code in Notepad, here’s the program you must type in Notepad:
Dim nilai As IntegerDim konfirmasi As StringSub mulai_kuis()nilai = 0ActivePresentation.SlideShowWindow.View.NextEnd SubSub benar()konfirmasi = MsgBox("Yakin dengan jawaban kamu?", vbYesNo, " Cek Jawaban!")If konfirmasi = vbYes Thennilai = nilai + 2ActivePresentation.SlideShowWindow.View.NextEnd IfEnd SubSub salah()konfirmasi = MsgBox("Yakin dengan jawaban kamu?", vbYesNo, " Cek Jawaban!")If konfirmasi = vbYes ThenActivePresentation.SlideShowWindow.View.NextEnd IfEnd SubSub cek_skor()MsgBox (" skor anda adalah " & nilai)konfirmasi = MsgBox(" Ingin Mengulangi kuis? ", vbYesNo)If konfirmasi = vbYes ThenActivePresentation.SlideShowWindow.View.FirstEnd IfIf konfirmasi = vbNo ThenActivePresentation.SlideShowWindow.View.NextEnd IfEnd Sub
When finished, then save it on your computer. See the example in the picture.
8. Then reopen Microsoft Visual Basic, and copy the program earlier. See the example in the picture.
9. Then return to Microsoft Power Point, then click Start button on slide 1, then click menu Insert and select Action. See the example in the picture.
11. Then click on Run Macros then select start_quiz. See the example in the picture.
12. Then for the multiple choice quiz questions, click answer button correct and do as above, but the difference is in Run Macro select Correct. And on the button whose answer is in Run Macro, select wrong.
13. And on the last slide, to see the answer score, click the Score button and proceed as above and on the Run Macro select score.
14. Now if everything is done, you can test your quiz, by clicking Slide Show or press F5.
15. Finally, save the file by changing the type format to Powerpoint Enable Template. See the example in the picture.
That’s how to make a multiple choice quiz in Microsoft Power Point. For the methods above I use Microsoft PowerPoint 2021, if you use PowerPoint 2003, 2007, 2010 the method is the same, you just need to adjust it.
That’s an article on how to make a multiple choice quiz in Microsoft PowerPoint, I hope this article can be useful and help you to create a quiz in PowerPoint. You can try it yourself by following the steps above. Good luck and thank you!
A cheerful and expressive woman. Prefers to be busy than silent.
Post a Comment for "How to Create a Multiple Choice Quiz in Microsoft PowerPoint"