HenryLez HenryLez 11-11-2020 Computers and Technology contestada For the function below, which variables have the same scope? def square(numA, numB): return numA ** numB base = 5 power = 2 answer = square (base,power) print(answer) numA and power power and base numB and power base and numA