What is the name of this function?
def calculateTax(subtotal):
tax = subtotal * .0825
return tax
(1 point)
Responses
def
def
calculateTax
calculateTax
subtotal
subtotal
tax
tax
1 answer
The name of this function is 'calculateTax'.