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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!