Answered You can hire a professional tutor to get the answer.
Help develop a java application that grades a multiple choice quiz. This is the instructions given by my professor: The application will do the...
Help develop a java application that grades a multiple choice quiz.
This is the instructions given by my professor: The application will do the following: Should use a Label with Jbuttons for multiple choice questions should show A, B,C,D,E as options, should also allow for True or False questions. You should have at Minimum 3 Multiple choice and 2 true or False question with the ability to add more. Should have a submit button on each question with a response of correct answer or wrong answer. You may use an array.
At the end of test, should display a report of test grade and identify missed questions.
You may need to use some of the following imports, which others do you need.
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.RadioButton;
import javafx.scene.control.ToggleGroup;
Output should look similar to below
- Attachment 1
- Attachment 2