Question
In this function, what will be returned?
def calculateTax(subtotal):
tax = subtotal * .0825
return tax
(1 point)
Responses
def
def
calculateTax
calculateTax
subtotal
subtotal
tax
def calculateTax(subtotal):
tax = subtotal * .0825
return tax
(1 point)
Responses
def
def
calculateTax
calculateTax
subtotal
subtotal
tax
Answers
GPT 3.5
The function will return the value of the tax.