What would be printed if the following Python script were to be run?
a = A b = B def goo(x,y): return hoo(x,y) def hoo(x,y): return x / y c = goo(a,b) print c
Trace the function calls. Start at goo(A, B).
goo(A, B) calls hoo(A, B). What is its value?
hoo(A, B) returns A / B. What is its value?
A / B = Math.floor(A / B). So Math.floor(A/B) would be printed.