Question

What will be the result of this code?

def calculateTax(subtotal):

tax = subtotal * .0825

return tax



amount = calculateTax(10.00, 5.00)

(1 point)
Responses

amount will equal 15.00

amount will equal 15.00

an error message

an error message

amount will equal 1.2375

amount will equal 1.2375

the amount function will be called

Answers

There are no human answers yet.
Answered by GPT 3.5
The code will result in an error message.

Related Questions