Skip to content

RyukoDev/javaranch-data

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

javaranch-data

Cleaning up and formatting java questions from the java ranch roundup game. Want to use the data? Look here for v1 and here for v2.

Forked from https://github.com/seanastephens/javaranch-data, modified for CSc 335 Spring 17.

JSON Layout

[
  {
   "id": "1",
   "line": "A string question related to some detail of java",
   "answer": "A string answer to the line element question",
   "explanation": "A string explanation as to why the answer is correct",
   "bogus": [
      "An array of incorrect string answers"
    ]
  }
]

V2 JSON Layout

[
  {
   "id": "1",
   "question": "A string question related to some detail of java",
   "answers": [
      {
       "answer": "A string multiple choice answer to the question",
       "correct": "truthy value if this is the correct answer"
      }
    ]
   "explanation": "A string explanation as to why the answer is correct",
  }
]

About

JSON formatted java trivia

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%