Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Given the below code: public static void main(String[] args) { try { Scanner in = new Scanner(new FileInputStream(a.txt)); } } catch (FileNotFoundException e) {

Given the below code: public static void main(String[] args) { try { Scanner in = new Scanner(new FileInputStream("a.txt")); } } catch (FileNotFoundException e) { System.out.println("There is no such file! " + e.getMessage()); } catch (Exception e) { System.out.println("I am in exception handler"); throw new RuntimeException(e); } finally { } System.out.println("I am in finally"); (a) What is the output when there IS a file named a.txt? (b) What is the output when there is no file named a.txt?

Step by Step Solution

3.39 Rating (165 Votes )

There are 3 Steps involved in it

Step: 1

import javautilScanner import javaio class Main public static void mainString args try Scanner in ne... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Java An Introduction To Problem Solving And Programming

Authors: Walter Savitch

8th Edition

0134462033, 978-0134462035

More Books

Students also viewed these Programming questions

Question

1. Target a specific number of pages to read and outline.

Answered: 1 week ago

Question

=+61. Refer to Exercise 46 of Section 7.4.

Answered: 1 week ago

Question

=+60. Refer to Exercise 42 of Section 7.4.

Answered: 1 week ago