Simple try-catch-finally Program This lab is a simple program that demonstrates how try-catch-finally works. You will notice the output when you enter incorrect input (for example, enter an incorrect index or an alpha character instead of an integer). Type up the code, execute and submit the results ONLY. 1. Enter a valid array index 2. Enter an invalid array index 3. Enter a letter instead of an integer - NOTE: Using the general error will show you the type of exception was caught, and you can then update your code to catch that type of error. 4. Try putting the "Exception e" before the IndexOutOfBoundsException eob what happens and are you able to run the code - what happens? CODE: import java.util.Scanner; public class TryCatchFinally { public static void main(String[] args) {

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 16PE
icon
Related questions
Question
Simple try-catch-finally Program
This lab is a simple program that demonstrates how try-catch-finally works. You will
notice the output when you enter incorrect input (for example, enter an incorrect index or an
alpha character instead of an integer). Type up the code, execute and submit the results ONLY.
1. Enter a valid array index
2. Enter an invalid array index
3. Enter a letter instead of an integer - NOTE: Using the general error will show you the
type of exception was caught, and you can then update your code to catch that type of
error.
4. Try putting the "Exception e" before the IndexOutOfBounds Exception eob what happens
and are you able to run the code - what happens?
CODE:
import java.util.Scanner;
public class TryCatchFinally {
public static void main(String[] args) {
// Instantiate a scanner
Scanner input = new Scanner(System.in);
}
}
// Create an array with 4 values
int an IntArr[] = {10, 15, 26, 99);
try
{
System.out.println("Enter the index to see the number: ");
int ind input.nextInt ();
System.out.println("The value in the "+ind + " index is: " + anIntArr[ind]);
}
catch (IndexOutOfBounds Exception eob)
{
}
System.out.println("IndexOutOfBounds Exception Error: + eob + "\n");
catch (Exception e)
{
}
System.out.println("GeneralException Error: " + e+ "\n");
finally {
input.close();
System.out.println("finally block executed");
}
// rest program will not execute
System.out.println("Outside try-catch-finally clause\nProgram finished");
Transcribed Image Text:Simple try-catch-finally Program This lab is a simple program that demonstrates how try-catch-finally works. You will notice the output when you enter incorrect input (for example, enter an incorrect index or an alpha character instead of an integer). Type up the code, execute and submit the results ONLY. 1. Enter a valid array index 2. Enter an invalid array index 3. Enter a letter instead of an integer - NOTE: Using the general error will show you the type of exception was caught, and you can then update your code to catch that type of error. 4. Try putting the "Exception e" before the IndexOutOfBounds Exception eob what happens and are you able to run the code - what happens? CODE: import java.util.Scanner; public class TryCatchFinally { public static void main(String[] args) { // Instantiate a scanner Scanner input = new Scanner(System.in); } } // Create an array with 4 values int an IntArr[] = {10, 15, 26, 99); try { System.out.println("Enter the index to see the number: "); int ind input.nextInt (); System.out.println("The value in the "+ind + " index is: " + anIntArr[ind]); } catch (IndexOutOfBounds Exception eob) { } System.out.println("IndexOutOfBounds Exception Error: + eob + "\n"); catch (Exception e) { } System.out.println("GeneralException Error: " + e+ "\n"); finally { input.close(); System.out.println("finally block executed"); } // rest program will not execute System.out.println("Outside try-catch-finally clause\nProgram finished");
Expert Solution
steps

Step by step

Solved in 2 steps with 4 images

Blurred answer
Knowledge Booster
Arrays
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
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning