

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output?public class Test{public static void main(String[] args){int x=10, y=0;if(x && y){System.out.print("TRUE");}else{System.out.print("FALSE");}}} |
A. | ALSE |
B. | RUE |
C. | ompilation Error |
D. | untime Error |
Answer» D. untime Error | |