Create and solve tests to study for your exams.
- Click on the big PLUS button
- Choose Create new topic
- Click on the Add exam button
- Click on the big PLUS button
- Choose an option
- Start Tester App.
- Pick your Topic.
- Pick your Exam.
Now you can solve your Exam!
- .png
- .jpg
The Jar file is in tester_app/app/build/libs, but you can also find it in releases.
- Open/create a directory and create a new textfile with the name of your exam.
- Now open the textfile created in step 1 and add your questions in the following format:
{
{
TRUE_FALSE {
"True/False Question text"
{
TRUE
}
}
}
{
MULTIPLE_CHOICE ORDERED {
"Multiple Choice Question text"
{
TRUE {
"Option 1 text"
"Option 1 alternative text"
}
FALSE {
"Option 2 text"
}
FALSE {
"Option 3 text"
}
}
}
}
{
WRITTEN ORDERED {
"Written Question text"
{
TRUE {
"Option 1 text"
"Option 1 alternative text"
}
FALSE {
"Option 2 text"
}
FALSE {
"Option 3 text"
}
}
}
}
}| Enum | Description |
|---|---|
| MULTIPLE_CHOICE or MC | Multiple Choice Question, can be ORDERED |
| TRUE_FALSE or TF | True/False Question |
| - | Written Question, can be ORDERED |
If Type is left empty it will be set to WRITTEN.
A TextOption has to contain an Array of any amount of String text.
A ButtonOption has to contain a String text and a Boolean of value true or false.
True/False Questions have to contain a Boolean of value true or false.