Look at the following method header:
public static void myMethod(int num)
Which of the following calls to the method will cause a compiler error?
a)myMethod(7);
b)myMethod(6.2);
c)long x = 99;myMethod(x);
d) short s = 2;myMethod(s);
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.