

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following code snippet? int a=15; int b=25; if ((a15) System.out.println(a); else System.out.println(b); |
A. | Error |
B. | 15 |
C. | 25 |
D. | No output |
Answer» C. 25 | |