Given an array of 10 names, complete the main method that outputs the name specified by the array index entered by the user. Use a try block to output the name and a catch block to catch any ArrayIndexOutOfBounds Exception. Output the message from the exception object if an ArrayIndexOutOfBounds Exception is caught. Output the first element in the array if the index is negative or the last element if the index is greater than the size of the array.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter14: Exception Handling
Section: Chapter Questions
Problem 2PE
icon
Related questions
Question
100%

import java.util.Scanner;

public class LabProgram {
   public static void main(String[] args) {
      Scanner scnr = new Scanner(System.in);
      String[] names = { "Ryley", "Edan", "Reagan", "Henry", "Caius", "Jane", "Guto", "Sonya", "Tyrese", "Johnny" };
      int index;

        index = scnr.nextInt();
      /* Type your code here. */
   }
}

3.8 LAB: Exceptions with arrays
Given an array of 10 names, complete the main method that outputs the name specified by the array index entered by the user. Use a try
block to output the name and a catch block to catch any ArrayIndexOutOfBounds Exception. Output the message from the exception object
if an ArrayIndexOutOfBounds Exception is caught. Output the first element in the array if the index is negative or the last element if the index
is greater than the size of the array.
Hint: Format the exception outputs using the getMessage() method from the exception object. Do not hard code the exception messages.
Ex: If the input of the program is:
5
the program outputs:
Name: Jane
Ex: If the input of the program is:
12
the program outputs:
Exception! Index 12 out of bounds for length 10
The closest name is: Johnny
Ex: If the input of the program is:
-2
the program outputs:
Exception! Index -2 out of bounds for length 10
The closest name is: Ryley
430560.2939290px@zay7
LAB
ACTIVITY
HAPP
1 import java.util.Scanner;
2
3 public class LabProgram {
4
5670NM
8
9
18
11
3.8.1: LAB: Exceptions with arrays
12}
13
LabProgram.java
index scnr.nextInt ();
/* Type your code here. */
0/10
Load default template....
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
string[] names = { "Ryley", "Edan", "Reagan", "Henry", "Caius", "Jane", "Guto", "Sonya", "Tyrese", "Johnny" };
int index;
Transcribed Image Text:3.8 LAB: Exceptions with arrays Given an array of 10 names, complete the main method that outputs the name specified by the array index entered by the user. Use a try block to output the name and a catch block to catch any ArrayIndexOutOfBounds Exception. Output the message from the exception object if an ArrayIndexOutOfBounds Exception is caught. Output the first element in the array if the index is negative or the last element if the index is greater than the size of the array. Hint: Format the exception outputs using the getMessage() method from the exception object. Do not hard code the exception messages. Ex: If the input of the program is: 5 the program outputs: Name: Jane Ex: If the input of the program is: 12 the program outputs: Exception! Index 12 out of bounds for length 10 The closest name is: Johnny Ex: If the input of the program is: -2 the program outputs: Exception! Index -2 out of bounds for length 10 The closest name is: Ryley 430560.2939290px@zay7 LAB ACTIVITY HAPP 1 import java.util.Scanner; 2 3 public class LabProgram { 4 5670NM 8 9 18 11 3.8.1: LAB: Exceptions with arrays 12} 13 LabProgram.java index scnr.nextInt (); /* Type your code here. */ 0/10 Load default template.... public static void main(String[] args) { Scanner scnr = new Scanner(System.in); string[] names = { "Ryley", "Edan", "Reagan", "Henry", "Caius", "Jane", "Guto", "Sonya", "Tyrese", "Johnny" }; int index;
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Exception Handling Keywords
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning