- Create Interactive Quiz With Scoring In Powerpoint 365 Login
- Create Interactive Quiz With Scoring In Powerpoint 365 Free
INTERACTIVE POWERPOINT QUIZ GAME WITH POINTS AND SCORE. In this PowerPoint Quiz Module, we will be designing our module and adding an ActiveX Element – Label to keep count of the student’s score. The Label is placed inside a slide-master. We increase the Points Label by 10 points every time a correct answer is pressed. Office Mix enables you to create interactive online videos using PowerPoint. With Office Mix, you can use PowerPoint to record audio or video using a webcam and microphone, and add digital ink to your slides. You can also embed assessments, polls, interactive simulations and online videos to your mix to increase engagement and assess.
Follow steps 1- 5 from Tutorial a) Download your desired template from this blogpost: Free Quiz Templates. Copy the question and answer slides from your desired template and paste them where you want your quiz to start. Hold CTRL and click on all the slides in the slide overview on the left side, you want to copy. Then right click Copy. It therefore seems fitting that Part 2 of make your own quiz should end tekhnologic’s first year. This wasn’t a deliberate choice and I hadn’t previously thought about writing this post at all, but the other day I received an e-mail. I was asked if I had any templates or tutorials available to keep track of the score during a PowerPoint quiz. All Office 365 Education users now have access to Microsoft Forms – a great new feature for creating surveys and quizzes. Anyone with an Office 365 Education account can create a Microsoft Form. Creators can choose to limit respondents to their school or make the form available to anyone.
You can create interactive quizzes and games with PowerPoint. Now of course there is software out there dedicated to creating this type of application, but before you purchase one of those solutions, why not try PowerPoint?
Create Interactive Quiz With Scoring In Powerpoint 365 Login
Hyperlinks work in PowerPoint. You can create links to Internet pages, files on your computer, and even slides within your presentation. The latter is what we’ll be doing to make our quiz.
Before you start designing your quiz, you’ll need to have an idea of who your users are and what you want them to get out of their experience with your application. Will they learn something? Will they have fun? Maybe both.
If you’re an instructor, you might consider making this type of quiz creation an assignment for your students.
Once you have some goals in mind, you’ll need some questions and answers. I created a short true or false quiz about geography so I could write this post. These are my quest ions.
True or False

- Helena is the capital of Montana.
- The Nile is a river in South America.
- This flag is the flag of Botswana. (Image of flag appears on slide.)
- Alaska became a state in 1922.
- The clock “Big Ben” is located in Toronto.
So there’s a slide for each question, and a “Correct” and “Incorrect” result slide for each question. That’s 15 slides. There is also a title slide to start the quiz.
There’s a bit of logic you have to work out to make your quiz run successfully. Try making a flow chart of how things should go. Here’s a sample:

This one was simple, but yours can be as complex as you like.
Here’s a run-down of my process.
- I made a first slide with the name of the quiz and a Click Here to Start Quiz button.
- The second slide had the first question and a True and False button.
- If the user clicks True for this question he gets the Correct! Helena is the capital of Montana slide. This slide also has a Go to question 2 button.
- If the user clicks False for this question, he gets the Wrong answer! slide. This slide also has a Go to question 2 button.
All the buttons are simply hyperlinks to another slide in the presentation. To add a hyperlink, right-click the object you’re using as the button (text boxes in this case), and select hyperlink.
Then choose the slide you want to link to.
My last Correct and Wrong answer! slides give the user an option to start the quiz again or to exit. You can use an Action Button to allow the user to exit the slide show with a click. Action Buttons are at the bottom of the Shape Tools menu. Select Action Button: Custom, draw a button, select the hyperlink radio button, and choose a link option.
- Make sure Advance Slide Automatically is selected. Use “Buttons” or “Click Boxes” to link from slide to slide.
Publish your Captivate file as a .swf with and export to .html.
That’s how I do it. You may prefer a different method. To find more ways, do an Internet search on “PowerPoint interactive quiz”. Happy quiz making!
In this PowerPoint Quiz Module, we will be designing our module and adding an ActiveX Element – Label to keep count of the student’s score. The Label is placed inside a slide-master.
We increase the Points Label by 10 points every time a correct answer is pressed. We decrease the Points Label by 5 points every time an incorrect or wrong answer is attempted.
We also have a message box which will pop-up indicating whether your answer is correct or incorrect.

Send Report Card to Google Sheets, Import Questions from Excel.
Make your quiz game in 54 seconds!
Calculating points and scores in an interactive PowerPoint Quiz Game
Using the Syntax Label1.Caption we can increase or decrease the Points. We need not have a separate data integer which scores the point. This is very straight-forward and easy for people to customise and understand the code.
Why do we use SlideMaster in PowerPoint Quiz Game to calculate points and score
We can keep the points label in our normal slide too. There is no proper valid reason to keep it inside a slidemaster.
Yet the reason why I chose to place my label inside a slidemaster was the way slides are automatically named by PowerPoint VBA.

If I have 10 slides, the last slide would be named Slide10. However, if I introduce another slide in between, that slide would named Slide11 and the new 11th slide would still be named Slide10. The slides are named numerically in the order of creation.
This would create lot of confusion if we introduced new question slides in-between.
Create Interactive Quiz With Scoring In Powerpoint 365 Free
Thus, to reduce this heavy load of confusion, I decided to place it within a SlideMaster Layout.