1. Create Order.java 2. 3. 4. 5. a. createMeal Class that defines various static methods to create and calculate the costs of meals and orders. a. Takes an int representing the length of the mean. (using java.util.Random) b. Return a Menu array of the specified length representing the meal. C. Populate each slot in the Menu array such that each kind of Menu has an equal chance of being selected. createOrder a. d. b. Return an array of Menu arrays representing the order. C. The largest meal should occupy index 0 in the returned array. Subsequent meals in the array should have one less item than the meal at the previous index Takes in an int representing the number of means in the order. (this parameter also represents the length of the largest meal.) a. b. C. Each meal in the order should be populated with Menu items such that each kind of Menu has an equal chance of being selected mealCost a. b. C. Takes in a Menu array representing the meal of which to calculate the cost. Return an int representing the cost of the meal. Calculate the cost of the meal. (The price of the given Menu element is calculated as the product of its index in the meal and the index of that Menu as it was enumerated in the Menu enum. order Cost Takes in an array of Menu arrays representing the order of which to calculate the cost. Return an int representing the cost of the order. The cost of the order is the sum of the costs of each meal in the order.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Through java 'import java.util.Random;' using the enum: 
public enum Menu {
Corndog,
Pizza,
Nachos,
Bagle,
Ice_Cream,
Stir_Fry,
}

1. Create Order.java
2.
3.
4.
5.
a.
createMeal
a.
b.
C.
a.
createOrder
b.
C.
Class that defines various static methods to create and calculate the costs of meals and orders.
a.
b.
Return an array of Menu arrays representing the order.
The largest meal should occupy index 0 in the returned array. Subsequent meals in the array
should have one less item than the meal at the previous index
d. Each meal in the order should be populated with Menu items such that each kind of Menu has an
equal chance of being selected
C.
Takes an int representing the length of the mean. (using java.util.Random)
Return a Menu array of the specified length representing the meal.
Populate each slot in the Menu array such that each kind of Menu has an equal chance of being
selected.
mealCost
a.
b.
Takes in an int representing the number of means in the order. (this parameter also represents the
length of the largest meal.)
C.
Takes in a Menu array representing the meal of which to calculate the cost.
Return an int representing the cost of the meal.
orderCost
Calculate the cost of the meal. (The price of the given Menu element is calculated as the product
of its index in the meal and the index of that Menu as it was enumerated in the Menu enum.
Takes in an array of Menu arrays representing the order of which to calculate the cost.
Return an int representing the cost of the order.
The cost of the order is the sum of the costs of each meal in the order.
Transcribed Image Text:1. Create Order.java 2. 3. 4. 5. a. createMeal a. b. C. a. createOrder b. C. Class that defines various static methods to create and calculate the costs of meals and orders. a. b. Return an array of Menu arrays representing the order. The largest meal should occupy index 0 in the returned array. Subsequent meals in the array should have one less item than the meal at the previous index d. Each meal in the order should be populated with Menu items such that each kind of Menu has an equal chance of being selected C. Takes an int representing the length of the mean. (using java.util.Random) Return a Menu array of the specified length representing the meal. Populate each slot in the Menu array such that each kind of Menu has an equal chance of being selected. mealCost a. b. Takes in an int representing the number of means in the order. (this parameter also represents the length of the largest meal.) C. Takes in a Menu array representing the meal of which to calculate the cost. Return an int representing the cost of the meal. orderCost Calculate the cost of the meal. (The price of the given Menu element is calculated as the product of its index in the meal and the index of that Menu as it was enumerated in the Menu enum. Takes in an array of Menu arrays representing the order of which to calculate the cost. Return an int representing the cost of the order. The cost of the order is the sum of the costs of each meal in the order.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

How would one go about creating a main class that calls those static classes, but in a seperate java file?

Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Adjacency Matrix
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education