public static double secret(int first, double second){ double temp; if (second > first) temp = first * second; else temp = first - second; return temp;}Which of the following is a valid call to the method in the accompanying figure?
A. secret(5, 4.8);
B. secret(int 5, double 4.8);
C. secret(int x, double y);
D. public static int secret(5, 4.8);
Answer: A
Computer Science & Information Technology
You might also like to view...
A column chart is a chart that displays trends over time
Indicate whether the statement is true or false
Computer Science & Information Technology
Treating a base-class object as a(n)_____________ can cause errors.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology