Can I make a use multiple IF statements?
You could add a Timer to your quiz. Try to:-
Either give the user a certain amount of seconds to complete the quiz or question
Give them a certain amount of time to complete the question and then output how long it took them
Also you could use the RANDOMIZE code to shuffle the questions i.e. so each time the questions could be in different order within a category
Algorithm
Tell user to enter either rock ,paper or scissors
Get the response
Generate a random number from 1 to 3 (1=rock,2=paper, 3=scissors)
Compare user selection and computer selection
Display who wins.
Hint
Don’t forget to randomize
Make sure the user enters a valid entry.
Add a loop structure to play several times and keep a running score
Make an enumerated variable type to store choices.