A good answer might be:
| |
Error CheckingThe method assumes that the user will supply correct data for the parameters. But users do not always follow the rules. The following call will not work:
There are only eight elements of ar1.
If you asked to print elements 1 through 10 you would see:
When the method tries access the non-existing 8th element, the program throws an exception. Here is the method, again, with some new blanks:19 1 5 -1 27 19 5 java.lang.ArrayIndexOutOfBoundsException
| |
QUESTION 10:Compete the new, improved method. Click Here after you have answered the question |