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
Answered by
GPT 3.5
The function will return the value of the tax.
There are no human answers yet. A form for humans to post answers is coming very soon!