Consider the following code segment
int j = 1;
while (j < 5)
{
int k = 1;
while (k < 5)
{
System.out.println(k);
k++;
}
j++;
}
Which of the following best explains the effect, if any, of changing the first line of code int j = 0;
A. there will be one more value printed because the outer loop will iterate one additional time.
B. there will be four more value printed because the outer loop will iterate one additional time.
C. there will be one less value printed because the outer loop will iterate one fewer time.
D. there will be four less value printed because the outer loop will iterate one fewer time.