MCQOPTIONS
Saved Bookmarks
| 1. |
class Output{ public static void main(String args[]) { int x , y = 1; x = 10; if (x != 10 && x / 0 == 0) System.out.println(y); else System.out.println(++y); }} 29.What is the output of this program? |
| A. | 0 |
| B. | 1 |
| C. | FALSE |
| D. | TRUE |
| Answer» D. TRUE | |