/thetriviaquiz

This repl prompts the user for three modes of play: Movies, IPL or CS, based on which the trivia questions are asked. The number of questions being asked depends upon the difficulty level selected by the user. The user gets a +1 score for a correct answer, 0 for incorrect. The Secret code for exiting the quiz in between is 'exit'.

Primary LanguagePython

thetriviaquiz

Deployed Link: www.thetriviaquiz.com

  1. This project uses OOP for deployment of The Trivia Quiz Game.
  2. The database consists of three dictionaries containing facts:value pairs - IPL_data, MOVIES_data, CS_data.
  3. The user is prompted for the Game Mode, according to which the database is seleceted.
  4. The game consists of 5 levels: Default, Easy, Medium, Hard, Pro.
  5. The number of questions are listed as follows:
    • Default: 5
    • Easy: 10
    • Medium: 20
    • Hard: 30
    • Pro: 50
  6. With each correct answer, user score is incremented by 1
  7. While, wrong answer doesn't have any impact on the user's score.
  8. The quiz consists of binary answerws: True/ False.
Kindly suggest any changes for functionality improvements or code enhancement.