Problem

Determine the output of the following code when the input is (a) -1, (b) 0, and (c) 12XY...

Determine the output of the following code when the input is (a) -1, (b) 0, and (c) 12XY. This is the same question as Exercise 1, but the code here has the finally clause.

Scanner scanner = new Scanner(System.in);

try {

int num = scanner.nextInt();

if (num != 0) {

throw new Exception("Not zero");

}

System.out.println("I'm happy with the input.");

} catch (InputMismatchException e) {

System.out.println("Invalid Entry");

} catch (Exception e) {

System.out.println("Error: "+ e.getMessage());

} finally {

System.out.println("Finally Clause Executed");

}

Reference Exercise 1.

Determine the output of the following code when the input is (a) -1, (b) 0, and (c) 12XY.

Scanner scanner = new Scanner(System.in);

try {

int num = scanner.nextInt();

if (num != 0) {

throw new Exception("Not zero");

}

System.out.println("I'm happy with the input.");

} catch (InputMismatchException e) {

System.out.println("Invalid Entry");

} catch (Exception e) {

System.out.println("Error: "+ e.getMessage());

}

Step-by-Step Solution

Request Professional Solution

Request Solution!

We need at least 10 more requests to produce the solution.

0 / 10 have requested this problem solution

The more requests, the faster the answer.

Request! (Login Required)


All students who have requested the solution will be notified once they are available.
Add your Solution
Textbook Solutions and Answers Search
Solutions For Problems in Chapter 8