A quiz application created in django to conduct mcq quizzes. The application has the following features :
- Two types of users can login i.e. Student and Teacher
- Add quizzes from interface
- Add questions from interface
- View results of students who attempted quiz instantly
- View available quizzes
- Attemp any number of quizzes
- Can attempt a quiz multiple number of times
- View result of quiz
- Shows result of all attempts for a particular quiz
- Install python3
- Install pip for python3
- Install virtualenv pip install virtualenv or pip3 install virtualenv
- Create virtual environment and cd into it virtualenv QuizApp --python python3 && cd QuizApp
- Clone git repository into src folder and cd into it git clone src && cd src
- Make appropriate database changes to settings module and make migrations using python manage.py makemigrations and then python manage.py migrate
- Run using python manage.py runserver