I am trying to create a large database of all the relevant book questions with options ,difficulty level, right answer and chapter for my university. The problem is how to pick the question from hard book and store it on database (I can’t type every question and options and push it to database).
I tried with the pdf form of book.I copied the text of question created options and other fields and pushed it to mongodb database as JSON object –
{
“Question”:”What is the size of black hole given its mass”,
“Options”:[“231″,”343″,”676″,”578”],
“Answer”:”231″,
“Difficulty:”Easy”,
“Chapter”:”Black Hole”
}
but it takes a lot of time when you have to thousands of question to push in database.
I want to fetch these questions with options based on query like chapter name and difficulty level .
Hope someone will help.
Striver is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.