randRange( 0, 20)

What would be printed if the following Python script were to be run?

				  def goo(x, y):
				       x = x + 1
				       y = y + 1
				       print x
				  x = 5
				  y = Dec
				  goo(y, x)
				
Dec + 1

Arguments in the function call goo(y,x) are copied into the corresponding parameters in the function definition def goo(x,y).

Arguments must match the position of the corresponding parameters.

In this case the value of the argument y is copied into the parameter x.

The value Dec + 1 would be printed.