beingtmk / nodejs-starter-kit

A Universal Javascript Starter Kit to satisify all you Web / App needs!
https://nodejs-starterkit.approxyma.com
MIT License
27 stars 15 forks source link

Quiz Module #43

Closed lokeshrana9999 closed 4 years ago

lokeshrana9999 commented 4 years ago

Implement a quiz module that has the functionality of creating custom quizzes (question and associated answers). Also users should be able to answer each question and report card be made available to admin.

beingtmk commented 4 years ago

4 tables

  1. question: tag, description, is_active, quiz_id
  2. choice: description, question_id
  3. answer: user_id, question_id, answer_id
  4. quiz: title, description
beingtmk commented 4 years ago

/quiz:

beingtmk commented 4 years ago

a table of results for all members needs to be added. @lokeshrana9999.