Implement exception handling if you had to iterate through an array.
Risposte di colloquio
Anonimo
23 mar 2018
1) If null, throw exception
2) If size == 0, throw exception
Anonimo
3 mag 2018
If an we request an index that is negative or greater than or equal to size of the array then an ArrayIndexOutOfBound exception is thrown.
We can implement this exception while iterating through the array.