Vidyalelo
Java Programming · Q79

Exceptions

Programming · Java Programming · question 79

Q79

What will be the output of the following Java code? class Output public static void main(String args[]) try int a = 0; int b = 5; int c = a / b; System.out.print("Hello"); finally System.out.print("World");

A.
Hello
B.
World
C.
HelloWOrld
Answer
D.
Compilation Error

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board