Question
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...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get StartedRecommended Textbook for
Java An Introduction To Problem Solving And Programming
Authors: Walter Savitch
8th Edition
0134462033, 978-0134462035
Students also viewed these Programming questions
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
View Answer in SolutionInn App