write an application named badsubscript in which you declare an array of 10 first names. write a try block which you prompt the user for an interger and display the name in the requested position. create a catch block that catches the potential arrayindexoutofboundsexception thrown when the user enters a number that is out of range. the catch block should also display an error message. save the file as badsubscriptcaught.java

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