METHOD printStatement(parameters: CREATE x)
IF ((x * 2) == 8)
PRINT x
ELSE IF (x == 5)
PRINT "End program."
ELSE IF (x > 0)
PRINT "Boo!"
ELSE
PRINT x*x
END IF
END METHOD
BEGIN MAIN
CALL printStatement(5)
END MAIN
What is returned from the PrintStatement Method to the MAIN method?
A. 25
B. 5
C. No value is returned.
D. Boo!
E. End program.