Consider the following method definition. The method printALLCharacters is intended to print out every character in str, starting with the character at index 0.
public static void printALLCharacters(String str)
{
for (int x = 0; x < ( ); x++) // Line 3
{
System (str.substring(x, +1));
}
}
The following statement is found in the same class as the printALLCharacters method.
printALLCharacters("ABCDEFG");
Which choice best describes the difference, if any, in the behavior of this statement that will result from changing x < ( ) to x <= ( ) in line 3 of the method?
A. The method call will print fewer characters than it did before the change because the loop will iterate fewer times.
B. The method call will print more characters than it did before the change because the loop will iterate more times.
C. The method call, which worked correctly before the change, will now cause a run-time error because it attempts to access a character at index 7 in a string whose last element is at index 6.
D. The method call, which worked correctly before the change, will now cause a run-time error because it attempts to access a character at index 8 in a string whose last element is at index 7.
E. The behavior of the code segment will remain unchanged.