Question

You are writing a program that will manage an ordering service for a restaurant. Which of the following classes are you most likely to create?

(1 point)
Responses

Desserts

Desserts

calculate_ commission

calculate_ commission

NumPy

NumPy

price

price
Skip to navigation

page 1 of 1

1 answer

For an ordering service for a restaurant, the most relevant class to create from the options provided would be:

Desserts

This class could encapsulate the properties and behaviors related to dessert items on the menu, including attributes like name, price, ingredients, and methods for functionalities such as displaying the dessert or calculating nutritional information.

The other options, such as "calculate_commission," "NumPy," and "price," are either not classes in a typical sense (NumPy is a library), or they are concepts/functions that could be methods or attributes rather than independent classes.