A minimalist, console-based Java quiz application with questions inside a json file.
- true-false
- single choice
- multiple choice
- Q1
- Java Development Kit (JDK) 8 or higher.
Head to the releases and download the zip and unzip it.
Next go to your terminal and in the directory where you unziped the file run:
java -jar QuizApplication.jar load examples/java.questions
# or of course any other mode- Clone:
git clone https://github.com/Azok42/QuizApplication.git- Compile:
cd QuizApplication
javac -cp "lib/json-java.jar:src" -d bin src/quiz_application/**/*.java- Run:
cd bin
java -cp p ".:../lib/json-java.jar" quiz_application.Quiz load ../example/java.questions
# or
java -cp ".:../lib/json-java.jar" quiz_application.Quiz help # for help because you will need it if you want to use this crap