Question: QUESTION 5 Consider the following code. class Test { public static void main(String[] args) { try { System.out.println(Welcome to Java); int i = 0; int
QUESTION 5
-
Consider the following code.
class Test { public static void main(String[] args) { try { System.out.println("Welcome to Java"); int i = 0; int y = 2 / i; System.out.println("Welcome to HTML"); } finally { System.out.println("The finally clause is executed"); } } } What is displayed when the code runs. Don't copy and paste the code -- try and work out the answer by following the focus of control through the code.
A. There is a compilation error.
B. "Welcome to Java" followed by "The finally clause is executed" in the next line, then an error message.
C. "Welcome to Java", then an error message.
D. The program displays three lines: "Welcome to Java", "Welcome to HTML", "The finally clause is executed", then an error message.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
