Given the following method:
public static boolean isMagic(int number) { int j = 2;
boolean result = false;
while (j <= number / 2)
{
if (number % j == 0)
{
result = true;
}
j++;
}
return result;
}
What argument(s) will cause the result of the method to be true?
I. 197
II. 224
III. 231
IV. 341
a) I and II
b) II and III
c) II, III, and IV
d) I and III