-
What is the output of this program?
public class I_LOVE_YOU
{
public static void main(String args[])
{
try
{
int You, Me, You_Me;
You = 0;
Me = 5;
You_Me = Me/You;
System.out.print("I MISS U ALWAYS...");
}
catch(ArithmeticException e)
{
System.out.print("I LOVE YOU");
}
finally
{
System.out.print(" FOREVER...");
}
}
}
-
- I MISS U ALWAYS...
- I LOVE YOU
- FOREVER...
- I LOVE YOU FOREVER...
- None of these
Correct Option: D
I LOVE YOU FOREVER...