Program for using arraylists in two ways, JAVA Programming

Assignment Help:

In this lab, you will practice using ArrayLists in two ways.  The first is in the problem domain class Question.java (see the UML diagram shown below) which contains data for trivia questions.  The instance variable question is a String that holds the trivia question.  An ArrayList of Strings is used to hold the correct answer along with one or more incorrect answers.  The index value of the ArrayList element holding the correct answer is held in the variable correctAnswer. 

Question

- question: String

- answers: ArrayList

- correctAnswer: int

+ Question()            

+ Question( newQuestion: String, newAnswers: ArrayList, newCorrectAnswer: int )

+ getQuestion(): String

+ getAnswers(): ArrayList

+ getCorrectAnswer(): int

+ setQuestion( newQuestion: String ): void

+ setAnswers( newAnswers: ArrayList ): void

+setCorrectAnswer( newCorrectAnswer: int ): void

+ toString(): String

+ checkAnswer( userAnswer: int ): boolean

+ displayAllAnswers(): String

 

The second way you will practice with ArrayLists is in the tester class TestQuestions.java.  In this class, you will create an ArrayList which will contain several Question references.  You will write code which will present the questions and answers to a user and allow the user to select the correct answer.

1.       Download and save Question.java and TestQuestions.java.  Add your name and Eagle ID in a comment at the top of each class.  Compile both classes and look over the existing code carefully before you proceed.  Please do not delete or modify any of the existing code in these classes.

2.       Write the code for two domain specific methods in Question.java.  Both domain specific methods are shown in the UML class diagram and the logic of the methods is explained below.  Please be sure that the method parameters and return types that you use are consistent with both the UML class diagram and this explanation.

a.       The checkAnswer() method takes an int argument which represents the user's selected answer to a question.  This method should compare the user's answer to the value stored in the instance variable correctAnswer.  If the two values match, the method should return true.  If they do not match, the method should return false.

b.      The displayAllAnswers() method should return a String which contains all of the answers for a particular trivia question.  Use line breaks in this String so that each answer is on a separate line.  Include the index value for each answer's position in the ArrayList that holds all of the answers.  So for example, if a particular question had three possible answers which were stored as "Yes", "No", and "Maybe" in the answersArrayList, then this method would return a String which would appear as shown below:

                         0. Yes
                         1. No
                         2. Maybe

3.       In the tester class, you will write code to create some new question objects and to allow a user to answer your questions.

a.       In TestQuestions.java, follow the example code to create at least two new trivia questions which have one right answer and multiple wrong answers to choose from.  Use the ArrayList called questionList(already created in this class) to hold the references to all of your Question objects.

b.      Add one or more lines of code which displays toString() output for all of the trivia questions to the console.  Look over the display and be sure that all of the data that you entered is shown correctly.  You can think of this as diagnostic output that you (the developer) can use to verify your data.  If we were really writing a trivia game for a user, then you would hide or eliminate this display.  But for now, you should leave it in.

c.       Create a loop which will display all of the questions to a user and allow the user to answer them.  You may use either Scanner input and console output or JOptionPaneinput and output.  The example shown below usesJOptionPane.

181_Program for Using Arraylists in Two Ways 1.png


This dialog box shows the text of the first question and the String which is produced by the displayAllAnswers() method in Question.java.  It also includes instructions to the user to enter the number of the correct answer.

After the user enters their selection, call the checkAnswer() method to determine whether the answer is correct.  Display a message to the user indicating whether the entered answer was right or wrong.

For this question, if the user typed in a 1 (the correct answer), the following message is displayed:

957_Program for Using Arraylists in Two Ways 2.png


Typing in any number other than 1 will cause the following message to be displayed:

2356_Program for Using Arraylists in Two Ways 3.png


When the user clicks OK to close the dialog box, the next question will be displayed.  Your loop should carry out these steps for all of the trivia questions that you have created.

4.       Save your java files with the modifications.  Zip your two java files together into a compressed folder and attach them to the Folio assignment to submit your work.


Related Discussions:- Program for using arraylists in two ways

Online Store Website, Project Requirements • Create your own online store ...

Project Requirements • Create your own online store Web site, selling products of your choice. • Create pages that allow you to search and buy available products, as well as add,

What is the difference between inner class and nested class, What is the di...

What is the difference between inner class and nested class? When a class is explained within a scope od another class, then it becomes inner class. If the access modifier o

How dbms is better to use than flat-file database, How can you justify that...

How can you justify that a DBMS is better to use than Flat-file database? A DBMS takes care of the storage, retrieval, and management of large data sets on a Database. It give

Arraya, what is arrays and how do they operate

what is arrays and how do they operate

Program that compute prime numbers, The purpose of this assignment is to gi...

The purpose of this assignment is to give you practice working with one dimensional arrays. It will also introduce you to one of the oldest mathematical algorithms in the world. No

What does the keyword "synchronize" mean in java, What does the keyword " s...

What does the keyword " synchronize " mean in java. What are the usage and disadvantages of synchronization?

Describe the benefits of threads, Question 1: a) What is an "Operating...

Question 1: a) What is an "Operating System"? b) Describe the four main computer system components. c) Describe and compare "Parallel Systems" and "Distributed Systems

Carbon Footprint Applications, 10.13 (CarbonFootprint Interface: Polymorphi...

10.13 (CarbonFootprint Interface: Polymorphism) Using interfaces, as you learned in this chapter, you can specify similar behaviors for possibly disparate classes. Governments and

Explain try and catch exception in java, Explain try and catch exception in...

Explain try and catch exception in java? Why use exceptions instead of return values? 1. Forces error checking 2. Cleans up your code through separating the normal case from

What is object oriented programming language, What is object oriented progr...

What is object oriented programming language? In classic, procedural programming you try to form the real world problem you're attempting to solve fit a few, predetermined data

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd