MCQOPTIONS
Saved Bookmarks
| 1. |
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..."); } } } |
| A. | I MISS U ALWAYS... |
| B. | I LOVE YOU |
| C. | FOREVER... |
| D. | I LOVE YOU FOREVER... |
| E. | None of these |
| Answer» E. None of these | |