Question: JAVA Consider the following method:( 4 points ) public static int secret (int one) { int i; int prod = 1; for (i = 1;
JAVA
Consider the following method:(4 points)
public static int secret (int one)
{
int i;
int prod = 1;
for (i = 1; i <= 3; i++)
prod = prod * one;
return prod;
}
a. What is the output of the following Java statements? Explain your answer.
i. System.out.println(secret(5));
ii.System.out.println( 2 * secret(6));
b. What does the method secret do?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
