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