ComputerScienceExpert

(11)

$18/per page/

About ComputerScienceExpert

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Applied Sciences,Calculus See all
Applied Sciences,Calculus,Chemistry,Computer Science,Environmental science,Information Systems,Science Hide all
Teaching Since: Apr 2017
Last Sign in: 103 Weeks Ago, 3 Days Ago
Questions Answered: 4870
Tutorials Posted: 4863

Education

  • MBA IT, Mater in Science and Technology
    Devry
    Jul-1996 - Jul-2000

Experience

  • Professor
    Devry University
    Mar-2010 - Oct-2016

Category > Programming Posted 25 May 2017 My Price 9.00

Specifications for ShoutBox

Specifications for ShoutBox:

 

The ShoutBox object will allow you to shout messages into your virtual world. Your ShoutBox will have two ways of generating messages:

 

  1. You can select from a list of canned messages to shout, or
  2. You can have the ShoutBox generate a random message for you.

 

You must use data structures Array, ArrayList, or a HashMap to store the message data.

 

Canned messages: One data structure will store the canned messages. You can load this data structure with canned messages of your choosing. The shoutOutCannedMessage() method will loop through the data structure to first display all canned messages and allow the user to select one. The shoutOutCannedMessage() will return the selected message String. This String will be displayed in the virtual world. For now, your virtual world will be the output window.

 

Random messages: To generate random messages, you need to have a data structure that holds a list of subjects, another data structure that holds a list of objects, another that holds a list of verbs, another that holds a list of adverbs, and another that holds a list of adjectives. The lists you create can hold as many words as you would like. The shoutOutRandomMessage() method will use a random number generator that selects one word from each data structure to form a random message. Random messages will be in the following form: Subject - Verb - Adjective - Object - Adverb.

 

The generated message String will be returned. The String will be displayed by the ShoutBox in the virtual world. For now, your virtual world will be the output window.

 

Partial class diagram for the ShoutBox object:

ShoutBox

 

String shoutOutRandomMessage()

String shoutOutCannedMessage()

 

 

 

 

 

 

 

 

Examples of canned messages stored in the canned messages data structure (you can store as many canned messages as you would like):

“Hello World”

“I am studying”

“I am at work”

 

 

 

 

 

Example of subjects stored in the subjects data structure:

“I”

“You”

 

Example of objects stored in the objects data structure:

“course”

“homework”

 

Example of verbs stored in the verbs data structure:

“studying”

“eating”

“sneezing”

 

Example of adjectives stored in the adjectives data structure:

“funny”

“prickly”

“hard”

“awesome”

 

Example of adverbs stored in the adverbs data structure:

“quickly”

“everywhere”

 

 

 

 

 

 

 

The following critical elements will be addressed in this submission:

 

1. The method shoutOutCannedMessage() loops through the data structure that stores the canned messages first to display all canned messages and allows the user to select one canned message.

2. The method shoutOutCannedMessage() will return the selected message string.

3. Your shoutOutRandomMessage() method should use a random number generator that selects one word from each data structure to form a random message. The random number generated should not exceed the bounds of your data. In other words, if you only have 5 words in a data structure, the random number generated should not be an index that has no word stored.

4. The method shoutOutRandomMessage() should return a randomly generated message string in accordance with specifications, in the following form:

5. Subject - Verb - Adjective - Object - Adverb (for example, “You read hard books quickly”).

Answers

(11)
Status NEW Posted 25 May 2017 05:05 AM My Price 9.00

-----------

Not Rated(0)