82.5k views
4 votes
The main part of your program has the following line of code.

answer = divide(30,5)

which function finds the quotient of 30 and 5 and returns 6?

User Kakia
by
4.3k points

1 Answer

5 votes

Answer:

def divide(numA, numB):

return numA / numB

Step-by-step explanation:

User Ricardo Costeira
by
4.8k points