Creating Interactive Quiz Using Powerpoint
Creating Interactive Quiz Using Powerpoint
School-Based INSET
DAY 3
JONALYN V. V.
JONALYN VALENCIA
VALENCIA
Teacher 3 3
Teacher
Steps in Lay Outing
Powerpoint Presentation
in making
Interactive Quiz
1. Set up Slide Show
2. Tick “Browsed at full screen
3. Click view and go to Slide Master
4. Duplicate Slide Master
Duplicated Slide Master
5. Under Slide Master 2, select the First
Layout
6. Delete all place holder
7. Create text box to enter text.
- Type Congratulations !,
- Go to File, and select Options
- Choose Customize Ribbon
- Enable the Developer tab, then click
OK
8. Go to Developer then click A to create
special text box for total points/score
9. Go to Properties to rename the label into
points, caption into 0(zero).
10. Use this code to compute scores/points.
Sub Correct()
Points.Caption = (Points.Caption) + 10
Output = MsgBox("Your answer is correct, Good Job!", vbOKOnly, "Correct Answer")
ActivePresentation.SlideShowWindow.View.Next
End Sub
Sub Incorrect()
Points.Caption = (Points.Caption) - 5
Output = MsgBox("Your answer is wrong.", vbOKOnly, "Wrong Answer")
ActivePresentation.SlideShowWindow.View.Next
End Sub
Sub Reset()
SlideLayout22.Points.Caption = 0
ActivePresentation.SlideShowWindow.View.Exit
End Sub
11. Go to Developer, click view code then
paste the copied code from word