Page 1004 - AP Computer Science A, 7th edition
P. 1004
16. (B) There are two problems with the segment as given:
1. arr[1] is not tested.
2. When i has a value of n–1, incrementing i will lead to an
out-of-range error for the if(arr[i] < min) test.
Modification II corrects both these errors. The change suggested in III corrects neither of these errors. The change in I corrects (1) but not (2).