Starting with Player 1, each player gets a turn answering 5 trivia questions (there are 10-questions, 5 for each player). When a question is displayed, four possible answers are also displayed. Only one of the answers is correct, and if the player selects the correct answer, he or she earns a point.
After answers have been selected for all of the questions, the program displays the number of points earned by each player and declares the player with the highest number of points the winner.
You are to design a class called Question to hold the data for a trivia question.
The Question class should have String fields for the following data:
A trivia question
Possible answer-1
Possible answer-2
Possible answer-3
Possible answer-4
The number of the correct answers (1, 2, 3, or 4)