Example: ArrayIndexOutOfBoundsException
Single Choice
Views 35
Answer:
public class UncheckedExample3 { public static void main(String[] args) { try { int[] numbers = {1, 2, 3}; System.out.println(numbers[5]); // Invalid index } catch (ArrayIndexOutOfBoundsException e) { System.out.println("Array index is out of range!"); } } }
Related Articles:
This section is dedicated exclusively to Questions & Answers. For an in-depth exploration of Java Programming Language, click the links and dive deeper into this subject.
Join Our telegram group to ask Questions
Click below button to join our groups.