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

1 answer

The function will return the value of the tax.
Similar Questions
  1. n this function, what will be returned?def calculateTax(subtotal): tax = subtotal * .0825 return tax (1 point) Responses def def
    1. answers icon 1 answer
  2. In this function, what is the parameter?def calculateTax(subtotal): tax = subtotal * .0825 return tax (1 point) Responses def
    1. answers icon 1 answer
  3. What is the name of this function?def calculateTax(subtotal): tax = subtotal * .0825 return tax (1 point) Responses def def
    1. answers icon 1 answer
  4. Why will this code result in an error message?def calculateTax(subtotal): tax = subtotal * .0825 return tax calculateTax() (1
    1. answers icon 3 answers
more similar questions