public class Wow { <br /> public static void go(short n) {System.out.println(”short”); } <br /> public static void go(Short n) {System.out.println(”SHORT”);} <br /> public static void go(Long n) {System.out.println(” LONG”); } <br /> public static void main(String [] args) { <br /> Short y= 6; <br /> int z=7; <br /> go(y); <br /> go(z); <br /> } <br /> } <br /> What is the result?() 
A、 short LONG
B、 SHORT LONG
C、 Compilation fails.
D、 An exception is thrown at runtime.