randRange( 0, 20) randRange( 1, 20)

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
				
Math.floor(A/B)

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.