CJCoding With Joseph
15per day

Safe Array Access Method

Complete the method safeGet(int[] arr, int index). It should return the element at the given index. If the index is out of bounds, catch the ArrayIndexOutOfBoundsException and return -1 instead.

Do not change main.

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.