What is the output of the code fragment given below
int i = 0;
int j = 0;
while (i < 125)
{
i = i + 2;
j++;
}
System.out.println(j);
a) 0
b) 62
c) 63
d) The code fragment displays no output because it does not compile.