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

Ask to do it, Ask question #Minig cbhdsjamkvfdsk mum 100 words accepted#

Ask question #Minig cbhdsjamkvfdsk mum 100 words accepted#

Explain parentheses in java, Explain Parentheses in Java ? Sometimes th...

Explain Parentheses in Java ? Sometimes the default sequence of evaluation isn't what you want. For example, the formula to change a Fahrenheit temperature to a Celsius tempera

Error, UnsupportedClassVersionError

UnsupportedClassVersionError

A new dynamic website, A NEW Dynamic Website I have the subsequent requi...

A NEW Dynamic Website I have the subsequent requirement which needs to be designed in 30 days (Max). 1) Construct a website which is a dynamic, means allow me to change conte

I need ps1 emulator for android, I need PS1 emulator for android Project...

I need PS1 emulator for android Project Description: There is an open source app called psx4droid i need a developer to solve problems and bugs and doing performance improvem

How many kinds of errors can be found during a program, How many kinds of e...

How many kinds of errors can be found during a program development? List them. 1. Syntax errors 2. Semantic errors 3. Run-time errors

Tokenizer, To load a text-file, read it line by line, and return the total ...

To load a text-file, read it line by line, and return the total number of alphanumeric tokens it contains and skip over the comments and double-quoted strings in the text-file whil

Component developer to code in java, Component Developer to code in Java: ...

Component Developer to code in Java: Worked for Sansri's Gateway as Software Engineer . Here I Worked as a Component Developer to code in Java and J2EE technologies Here Ensu

What is actionform, An ActionForm is a JavaBean that extends org.apache.str...

An ActionForm is a JavaBean that extends org.apache.struts.action.ActionForm.  ActionForm handles the session state for web application and the ActionForm object is automatically p

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