In this function, what is the parameter?
def calculateTax(subtotal):
tax = subtotal * .0825
return tax
(1 point)
Responses
def
def
calculateTax
calculateTax
subtotal
subtotal
tax
tax
1 answer
The parameter is "subtotal".