A simple Quiz application using Java concept.
Question class (Question.java): This class is a blueprint for the Question objects.
Quiz class (Quiz.java): Each Quiz can have multiple Questions. This class is used as a blueprint for a Quiz object which will in turn contain multiple Question objects.
Application class (App.java): This is the application class where we will be creating the Question objects and Quiz Object, displaying the quiz, evaluating the answers and printing the score along with the answer key. All of this will be done by using the attributes and methods supported in the Question.java and Quiz.java classes.