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
1 answer
The code will result in an error message.