Briefly describes the method you apply to that collection


Assignment

Iterating a method over a collection of objects is a common task that you may complete unknowingly each day. Within a collection of similar things, you identify the characteristics that make the individual elements unique and treat them differently according to their classifications. For example, assume that you are at a store and want to pay for something in cash. The bills in your wallet or purse represent a collection of similar objects, differentiated by denomination. It would not be very helpful to treat all of the bills the same, even though they are made from the same paper and have the same dimensions-eight bills does not equate to eight dollars unless each is a one-dollar bill.

How would you calculate how much money you have to spend? Each denomination needs a different value assigned. You compute a running total until you have accounted for all of the bills. For the moment, assume you are uncomfortable carrying large bills, so your wallet or purse contains $1, $5, $10, or $20 bills. The following program represents a "pseudo code" solution to this exercise.

totalCash is a whole number that starts at zero

while (I still have bills left to account for)

if (current bill is $1)
add 1 to totalCash
if (current bill is $5)
add 5 to totalCash
if (current bill is $10)
add 10 to totalCash
if (current bill is $20)
add 20 to totalCash

if (totalCash > itemPrice)
I have enough money to buy the item.

else

I don't.

This is an example of an iterative method because it is repeated over and over for the entire collection.

Think of a way in which you apply an iterative method to a collection of similar objects in your day-to-day life. Be creative-in other words, identify a situation that does not involve money (either paper or coins). Think about the ways in which the items of your collection are alike, as well as the key ways in which they differ.

1. Briefly describes your collection and the elements that comprise it

2. Identifies the characteristic(s) that differentiate(s) the elements of the collection

3. Briefly describes the method you apply to that collection

4. Defines the method using pseudo code that contains at least two if methods.

Request for Solution File

Ask an Expert for Answer!!
JAVA Programming: Briefly describes the method you apply to that collection
Reference No:- TGS02253786

Expected delivery within 24 Hours