38.8k views
1 vote
In the program below, which two variables have the same scope?

def subtract(numA, numb):
return numA - numB
def divide(numC, numD):
return numC/ numD
answer = divide(24,6)
print (answer)
numD and
num
numA
numB
Yeah

1 Answer

1 vote

Answer:

Numc

Step-by-step explanation:

Just did the quiz :]

User DYale
by
7.1k points