randRange( 0, 20)

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

				  x = V1
				  if x < 10:
				       s = "A"
                                       s = s + "B"
 			          else:
				       s = "C"
                                  s = s + "D"	
                                  print s
				
evalIfElse4( V1 )

In Python indentation and alignment are used to group statements into blocks.

Remember that the '+' operator can be used for string concatenation.

The correct answer is: evalIfElse4( V1 ).