Asked by Waldie Alameda on Jun 29, 2024

verifed

Verified

public int mystery(int x, int y)
{
If (x >= y)
Return x - y;
Else
Return x + y;
}Based on the code in the accompanying figure, what would be the output of the following statement?System.out.println(mystery(8,7) ) ;

A) 1
B) 7
C) 8
D) 15

System.out.println

A method in Java that prints a line of text to the console.

  • Understand the procedures involved in calling methods, encompassing the passing of parameters and the management of return values.
verifed

Verified Answer

CN
christina nguyenJul 03, 2024
Final Answer :
A
Explanation :
The method returns the result of x - y if x is greater than or equal to y. Since 8 is greater than 7, it returns 8 - 7, which is 1.