Respuesta :
Answer:
Here is some code that works for me:
import java.util.Scanner;
public class badsubscriptcaught {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String[] names = {"Jake", "Jack", "Jacob", "Ben", "Liam", "Noah", "Oliver", "William", "Elijah", "James"};
int number = Integer.parseInt(scanner.nextLine());
try{
System.out.println(names[number]);
}catch (ArrayIndexOutOfBoundsException exception){
System.out.println(exception + " isn't a vailid value.");
}
}
}
Exceptions are used to prevent a program from crashing, by managing the error or bugs.
The program in Java where comments are used to explain each line is as follows:
import java.util.Scanner;
public class badsubscriptcaught{
public static void main(String[] args) {
//This creates a scanner object
Scanner input = new Scanner(System.in);
//This gets input for the index to print
int arrayIndex = input.nextInt();
//This initializes the array.
//Note that, the names can be replaced
String[] nameArray = {"Liam", "Olivia" , "Noah", "Emma", "Oliver","Ava","Elijah","Charlotte","Michael","David"};
//This creates a try-catch exception
try{
//This prints the array element at the corresponding index, if the index is between 0 and 9
System.out.println(nameArray[arrayIndex]);
}
//This catches the exception
catch (ArrayIndexOutOfBoundsException exception){
//This prints the exception
System.out.println(exception);
}
}
}
At the end of the program, the exception is printed, if any.
Read more about exceptions at:
https://brainly.com/question/14234389