Recursive Method Call Trace
Consider the following method.
public static int mystery(int n)
{
if (n == 0)
{
return 0;
}
else
{
return mystery(n / 2) + (n % 2);
}
}
What value is returned by the call mystery(10)?
A
3
B
1
C
2
D
4
Question Leaderboard
Not enough data yet to show leaderboard.
