What type of variable is finalScore in this code? finalScore = float(input("What was your final score?")) (1 point)

finalScore is a float variable.

What is the result of running this code? print(10//3) (1 point)

The result of running this code is 3.

What is the result of running this code? print(6**2)

The result of running this code is 36.

In this function, what will be returned? def calculateTax(subtotal): tax = subtotal * .0825 return tax (1 point)

In the given function, the value of the variable `tax` will be returned.

What will be the result of this code? def calculateTax(subtotal): tax = subtotal * .0825 return tax amount = calculateTax(10.00, 5.00) (1 point)

The given code will result in a TypeError. This is because the `calculateTax` function is defined with only one parameter (`subtotal`), but when calling the function (`calculateTax(10.00, 5.00)`), two arguments are provided.

what is typecasting