What will be the output?
class Bubble
{
public static void main(String args[]) {
try
{
int x=5;
int y=5;
int x= y/x;
System.out.println("who");
}
catch(Exception e)
{
System.out.println("are");
}
finally
{
System.out.println("you");
}
}
}



Posted on by