Write an application in which you declare an array of eight first names. Write a try block in which you prompt the user for an integer 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 also should display the error message Subscript out of range. ***can you also explain each step thank you for all of your help*** import java.util.*; public class BadSubscriptCaught { public static void main(String[] args) { String[] names = {"Ariel", "Brad", "Clifford", "Denise", "Emily", "Fred", "Gina", "Henry"}; Scanner keyboard = new Scanner(System.in); int number; // your code here } }
Write an application in which you declare an array of eight first names. Write a try block in which you prompt the user for an integer 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 also should display the error message Subscript out of range. ***can you also explain each step thank you for all of your help*** import java.util.*; public class BadSubscriptCaught { public static void main(String[] args) { String[] names = {"Ariel", "Brad", "Clifford", "Denise", "Emily", "Fred", "Gina", "Henry"}; Scanner keyboard = new Scanner(System.in); int number; // your code here } }
Chapter12: Exception Handling
Section: Chapter Questions
Problem 8PE
Related questions
Question
Write an application in which you declare an array of eight first names. Write a try block in which you prompt the user for an integer 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 also should display the error message Subscript out of range.
***can you also explain each step thank you for all of your help***
import java.util.*;
public class BadSubscriptCaught
{
public static void main(String[] args)
{
String[] names = {"Ariel", "Brad", "Clifford", "Denise", "Emily",
"Fred", "Gina", "Henry"};
Scanner keyboard = new Scanner(System.in);
int number;
// your code here
}
}
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning