public static double secret(int first, double second){ double temp; if (second > first) temp = first * second; else temp = first - second; return temp;}What is the name of the method in the accompanying figure?
A. first
B. second
C. secret
D. double
Answer: C
Computer Science & Information Technology