subject

Grocery FRQ (ArrayLists) public class Grocery
{
private String category;
private int units;
private double price;
/*there may be other instance variables, constructors and methods not shown*/
public boolean equals (Grocery g)
{
/*implementation not shown*/
}
public int getUnits(){
return units;
}
public double getPrice(){
return price;
}
public String getCategory(){
return category;
}
public class Shopping
{
private ArrayList myGroceries;
public Shopping(Grocery[] groc){
/*to be implemented in part A*/
}
public Grocery findBestValue(String c){
/*to be implemented in part B*/
}
}
The Shopping constructor initializes the myGroceries instance variable with elements from the groc array. Only unique Grocery items are added to the myGroceries list (i. e. there are no duplicate Grocery items in myGroceries). A Grocery item is considered unique if at least one of the attributes differs (the category, units, and/or price). For example, if given the code:
Grocery[] theGroceries = {new Grocery("cereal", 1, 4.99), new Grocery("milk", 1, 4.29),
new Grocery("cereal", 2, 7.99), new Grocery("cereal", 1, 4.99),
new Grocery("candy", 48, 10.99), new Grocery("candy", 6, 1.00)};
Shopping myShopping = new Shopping(theGroceries);
The Grocery item "cereal", 1, 4.99 is not unique as there is another Grocery item with the same category, unit, and price.
The Grocery item "cereal", 2, 7.99 is unique because it is different from the other Grocery item by both the number of units and price.
Then the myGroceries arraylist of the Shopping class would be initialized with the following Grocery contents:
"cereal", 1, 4.99
"milk", 1, 4.29
"cereal", 2, 7.99
"candy", 48, 10.99
"candy", 6, 1.00
Complete the Shopping constructor.
Grocery items can be categorized. Grocery items have a number of units (quantity) and price (for the collection of units). The findBestValue method locates all Grocery items of the Shopping class with the same category c and determines the best priced option of the category by determining the lowest price per unit. The findBestValue method returns the best priced Grocery item of category c.
Precondition - there exists at least one such element with category c.
For example, the myGroceries arrayList contains the following Grocery items:
"cereal", 1, 4.99 (price per unit is 4.99)
"milk", 1, 4.29 (price per unit is 4.29)
"cereal", 2, 8.00 (price per unit is 4.00)
"candy", 50, 10.00 (price per unit is 0.20)
"candy", 10, 1.00 (price per unit is 0.10)
Then a call to findBestValue() would return the last Grocery item (with the category "candy", number of units is 10 and price is 1.00);
Write the findBestValue() method below.

ansver
Answers: 2

Other questions on the subject: Computers and Technology

image
Computers and Technology, 21.06.2019 22:00, alowery89
Match the steps of the process to julia's analysis. 1. analyze choices. current costs for making phone calls to foreign countries averages between five and ten cents a minute. 2. determine the goals. julia needs to reduce the cost of telecommunications without reducing her employees' ability to do their jobs. 3. gather data. the corporate computer network will be able to handle the increased traffic that will occur as a result of voip. 4. evaluate the decision. julia will have her it department set up voip in the smallest domestic office. 5. make the decision. julia will have employees document the benefits and problems that result from using the new technology.
Answers: 1
image
Computers and Technology, 22.06.2019 14:30, qxchung7310
The “rule of 72” is used to approximate the time required for prices to double due to inflation. if the inflation rate is r%, then the rule of 72 estimates that prices will double in 72/r years. for instance, at an inflation rate of 6%, prices double in about 72/6 or 12 years. write a program to test the accuracy of this rule. for each interest rate from 1% to 20%, the program should display the rounded value of 72/r and the actual number of years required for prices to double at an r% inflation rate. (assume prices increase at the end of each year.)
Answers: 1
image
Computers and Technology, 23.06.2019 01:00, leo4687
Complete the sentence about a presentation delivery method
Answers: 2
image
Computers and Technology, 24.06.2019 00:00, miguelturner
Which tool could be used to display only rows containing presidents who served two terms
Answers: 3
You know the right answer?
Grocery FRQ (ArrayLists) public class Grocery
{
private String category;
private...

Questions in other subjects:

Konu
Biology, 12.10.2020 17:01
Konu
Mathematics, 12.10.2020 17:01