โ Back to Miscellaneous
Question 215
Safe Array Access Method
Safe Array Access Method
Complete the methodsafeGet(int[] arr, int index). It should return the element at the given index. If the index is out of bounds, catch theArrayIndexOutOfBoundsExceptionand return-1instead. Do not changemain.
Expected Output:
10 -1
Topics:
Miscellaneous
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.