CS 1102 Unit 2 Programming Assignment
CS 1102 Unit 2 Programming Assignment
First create a new Java class for this assignment. You should start in Eclipse with your CS1102 project
from the previous assignment.
Now have your program ask a multiple-choice quiz question. You should create your own original quiz
question.
• Create a String called "question" and initialize it to the question you want to ask. Use the
characters "\n" to start a new line. For example:
String question = "What is a quiz?\n";
(Use your own quiz question, not this one.)
• Add multiple choices starting with "A", "B", "C", "D", and "E" using the "+=" operator and "\n".
question += "A. a test of knowledge, especially a brief, informal
test given to students\n";
• Add the following import statement at the top of your code, before "public class Quiz", to give
your program access to JOptionPane.
import javax.swing.JOptionPane;
• Ask your question and store the answer in a String. In particular, add the following statement in
your main method after setting all the lines of your question String.
String answer = JOptionPane.showInputDialog(question);
A dialog box should appear with your question and a text field for the answer. (In the Virtual Lab, a "File
Changed" dialog may pop up. Click "Yes". This will bring the main Eclipse window to the front, hiding the
message dialog from your program. Move the main Eclipse window or minimize it, and you will see the
message dialog behind it.)
Run your program and enter various answers. Make sure you get the correct response.
Modify your program so that it asks the question and responds with a dialog until the user enters the
correct answer.
• Move the statements that record the answer and display a response into a while loop.
• Use "break" or "return" to exit the loop when the answer is correct.
• Quiz.java
• Screen shot showing the input dialog with the quiz question
• Screen shot showing the message dialog for the correct answer
• Screen shot showing the message dialog for a valid but incorrect answer
• Screen shot showing the message dialog for an invalid answer