A fun and interactive quiz game built with Django. This application allows users to answer randomly selected questions, tracks their performance, and provides a detailed summary at the end of the quiz, including the correct answers for any incorrectly answered questions.
- Random question selection.
- Tracks user answers and evaluates correctness.
- Displays a summary of the quiz, including:
- Total questions attempted.
- Number of incorrect answers.
- User's selected answers.
- Correct answers for incorrect responses.
- Restart the quiz with a single click.
- Backend: Django Framework (Python)
- Frontend: HTML, CSS (Bootstrap for styling)
Ensure you have the following installed on your system:
- Python 3.8 or later
- pip (Python package manager)
- Virtualenv (optional but recommended)
Follow these steps to set up the project on your local machine:
git clone https://github.com/your-username/quiz-game-django.git
cd quiz-game-django
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py runserver
http://127.0.0.1:8000/