Examveda
Examveda

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 = b / a;
           System.out.print("Hello");
       }
       catch(Exception e) 
       {
           System.out.print("World");
       } 
       finally 
       {
           System.out.print("World");
       } 
    }
}

A. Hello

B. World

C. HelloWOrld

D. WorldWorld

Answer: Option D


This Question Belongs to Java Program >> Exceptions

Join The Discussion

Related Questions on Exceptions