0% found this document useful (0 votes)
134 views

Creating Interactive Quiz Using Powerpoint

The document provides step-by-step instructions for creating an interactive quiz using PowerPoint. It details how to set up the slide show, create text boxes, insert code to track points for correct and incorrect answers, link slides to navigate between questions, and include a reset button to restart the quiz. The instructions allow a teacher to build an interactive quiz presentation to engage students.

Uploaded by

Jonalyn Valencia
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
134 views

Creating Interactive Quiz Using Powerpoint

The document provides step-by-step instructions for creating an interactive quiz using PowerPoint. It details how to set up the slide show, create text boxes, insert code to track points for correct and incorrect answers, link slides to navigate between questions, and include a reset button to restart the quiz. The instructions allow a teacher to build an interactive quiz presentation to engage students.

Uploaded by

Jonalyn Valencia
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 18

Pangpang Elementary School

School-Based INSET
DAY 3

Creating Interactive Quiz


Using Powerpoint

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

12. Rename Slide Layout with your Slide


Layout Name
13. Close the Slide Master

14. Edit the first slide for


Quiz Game Title
15. Click New Slide to for the first question.
16. For the next question duplicate the
previous slide.
17. For the correct answer use your
Slidelayout name.correct
18. For the incorrect answer use your
Slidelayoutname.incorrect

19. Insert hyperlink in the start button.


20. Select the last slide then right click select
ne slide. Go to layout, insert the slide master.
21. Insert new text box for RETRY
BUTTON. Insert hyperlink, use run macro
slidelayoutname.reset
22. Save your files using Powerpoint Macro-
Enabled Presentation.
Thank

You might also like