Replies: 1 comment 1 reply
|
We can store the questions in a json file but it has to be on a database, right? Json is just the format, isn't it? |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
We need a way to store quiz questions for every programming language. Having in mind we organize programming languages in different folders we have already a structure. So the question is where the quiz app is going to be located and where are the quiz questions stored?
I suggest, for every language to create a single JSON file. This file will contain all possible questions. Each question can have details. The details can be images, code source files or html fragments. We need to create a reliable structure to be able to use GitHub to store all these and do version control.
This idea is to use JSON to store questions and answers. How we organize many JSON files and auxiliary files without a database is a different story. I suggest we use a database for other things but not for making the questions.
All reactions