BIG JAVA: LATE OBJECTS
2nd Edition
ISBN: 9781119626220
Author: Horstmann
Publisher: WILEY
expand_more
expand_more
format_list_bulleted
Question
Chapter 9, Problem 4PE
Program Plan Intro
Quiz Question
Program plan:
Filename: “Question.java”
This program file is used to define a class “Question”. In the code,
- Define a class “Question”.
- Declare class variables “text” and “answer”.
- Define a constructor “Question()”.
- Initialize the “text” and “answer”.
- Define a method “setAnswer()”.
- Initialize the value of “answer”.
- Define a method “checkAnswer()”.
- Return the value.
- Define a method “display()”.
- Print the value of “text”.
Filename: “AnyCorrectChoiceQuestion.java”
This program file is used to define a class “AnyCorrectChoiceQuestion” as extending from “Question”. In the code,
- Define a class “AnyCorrectChoiceQuestion”.
- Declare the class members, array list “choices” and “choiceString”.
- Define a constructor “FillInQuestion()”.
- Invoke the constructor.
- Initialize the array list.
- Define a method “addChoice()”.
- Call the method “add()” to add the choices.
- If the condition is true,
- If the value of “choiceString” is equal to null,
- Set the value of “choiceString”.
- If the condition is not true,
-
- Set the value of “choiceString”.
- Define a method “checkAnswer()”.
- Return the value.
- Define a method “display()”.
- Call the method “display()” of super class.
- Prompt the user to enter the correct choice.
- Iterate a “for” loop.
- Declare the variable “choiceNumber” and set its value.
- Print the value.
Filename: “QuestionDemo.java”
This program file is used to define a class “QuestionDemo” to test the class “AnyCorrectChoiceQuestion”. In the code,
- Define a class “QuestionDemo”.
- Define a method “main()”.
- Declare an array of objects.
- Create the object “question0” of “AnyCorrectChoiceQuestion”.
- Call the method “addChoice()” multiple times using “question0”.
- Set a value of “question0” to “quiz[0]”.
- Create the object “question1” of “AnyCorrectChoiceQuestion”.
- Call the method “addChoice()” multiple times using “question1”.
- Set a value of “question1” to “quiz[1]”.
- Create an object of “Scanner” class.
- Iterate a “for” loop.
- Call the method “display”.
- Prompt the user to enter the answer.
- Scan for the value.
- Call the method “checkAnswer()” and print the result.
Expert Solution & Answer

Trending nowThis is a popular solution!

Students have asked these similar questions
Dijkstra's Algorithm (part 1). Consider the network shown below, and Dijkstra’s link-state algorithm. Here, we are interested in computing the least cost path from node E (note: the start node here is E) to all other nodes using Dijkstra's algorithm. Using the algorithm statement used in the textbook and its visual representation, complete the "Step 0" row in the table below showing the link state algorithm’s execution by matching the table entries (i), (ii), (iii), and (iv) with their values. Write down your final [correct] answer, as you‘ll need it for the next question.
4. |z + 5 - 5i| = 7
14.
dz,
C: |z❘
C: |z❘ = 0.6
ze² - 2iz
H
Chapter 9 Solutions
BIG JAVA: LATE OBJECTS
Ch. 9.1 - Prob. 1SCCh. 9.1 - Prob. 2SCCh. 9.1 - Prob. 3SCCh. 9.1 - Prob. 4SCCh. 9.1 - Prob. 5SCCh. 9.2 - Prob. 6SCCh. 9.2 - Prob. 7SCCh. 9.2 - Prob. 8SCCh. 9.2 - Prob. 9SCCh. 9.2 - Prob. 10SC
Ch. 9.3 - Prob. 11SCCh. 9.3 - Prob. 12SCCh. 9.3 - Prob. 13SCCh. 9.3 - Prob. 14SCCh. 9.3 - Prob. 15SCCh. 9.4 - Prob. 16SCCh. 9.4 - Prob. 17SCCh. 9.4 - Prob. 18SCCh. 9.4 - Prob. 19SCCh. 9.4 - Prob. 20SCCh. 9.5 - Prob. 21SCCh. 9.5 - Prob. 22SCCh. 9.5 - Prob. 23SCCh. 9.5 - Prob. 24SCCh. 9.5 - Prob. 25SCCh. 9.6 - Prob. 26SCCh. 9.6 - Prob. 27SCCh. 9.6 - Prob. 28SCCh. 9.6 - Prob. 29SCCh. 9.6 - Prob. 30SCCh. 9.6 - Prob. 31SCCh. 9 - Prob. 1RECh. 9 - Prob. 2RECh. 9 - Prob. 3RECh. 9 - Prob. 4RECh. 9 - Prob. 5RECh. 9 - Prob. 6RECh. 9 - Prob. 7RECh. 9 - Prob. 8RECh. 9 - Prob. 9RECh. 9 - Prob. 10RECh. 9 - Prob. 11RECh. 9 - Prob. 12RECh. 9 - Prob. 13RECh. 9 - Prob. 14RECh. 9 - Prob. 15RECh. 9 - Prob. 16RECh. 9 - Prob. 1PECh. 9 - Prob. 2PECh. 9 - Prob. 3PECh. 9 - Prob. 4PECh. 9 - Prob. 7PECh. 9 - Prob. 8PECh. 9 - Prob. 9PECh. 9 - Prob. 10PECh. 9 - Prob. 11PECh. 9 - Prob. 12PECh. 9 - Prob. 13PECh. 9 - Prob. 14PECh. 9 - Prob. 15PECh. 9 - Prob. 16PECh. 9 - Prob. 18PECh. 9 - Prob. 19PECh. 9 - Prob. 20PECh. 9 - Prob. 21PECh. 9 - Prob. 22PECh. 9 - Prob. 23PECh. 9 - Prob. 1PPCh. 9 - Prob. 2PPCh. 9 - Prob. 3PPCh. 9 - Prob. 4PPCh. 9 - Prob. 5PPCh. 9 - Prob. 6PPCh. 9 - Prob. 7PPCh. 9 - Prob. 8PPCh. 9 - Prob. 9PPCh. 9 - Prob. 10PPCh. 9 - Prob. 11PPCh. 9 - Prob. 12PPCh. 9 - Prob. 13PPCh. 9 - Prob. 14PPCh. 9 - Prob. 15PPCh. 9 - Prob. 16PPCh. 9 - Prob. 17PPCh. 9 - Prob. 18PPCh. 9 - Prob. 19PPCh. 9 - Prob. 20PPCh. 9 - Prob. 21PPCh. 9 - Prob. 22PPCh. 9 - Prob. 23PP
Knowledge Booster
Similar questions
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education