Question #5
Dropdown
For the program shown, choose the correct word to complete the sentence.
def divide(numa, numB):
quotient = numA / numb
return quotient
# the main part of your program that calls the function
numC = 40
numD = 5
answer = divide(numcnumD)
print("Quotient:", answer)
print (numA)
The variable
scope is local to the divide function.