Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 733 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 733 Bytes

Quick-Quiz

alt tag

Quick Quiz allows you to load questions in a json format and then answer those questions in the form of a Quiz.

The format is the following:

"Question": 
            {
                "question": "What is 1+1?",
                "answerA": "3",
                "answerB": "2",
                "answerC": "4",
                "answerD": "5",
                "correctAnswer": "2"
             }

See ExampleQuiz.json for a full example

On the Todo list is to add a feature to create quizes within the program.

Written in C# to practice using Windows Forms.