✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What will Repeat(82, 3) return from the following method declaration?
public static int Repeat(int i, int j){
if (i==0)
return 0;
else
return Repeat(i/j, j)+1;
}