Given the following code, what is output by the method call, mystery(6 * 8)?
public static void mystery (int x[]) {
System.out.println("A");
}
public static void mystery (int x) {
System.out.println("B");
}
public static void mystery (String x) {
System.out.println("C");
}
A) A
B) B
C) C
D) CA
E) CB