InterviewSolution
Saved Bookmarks
| 1. |
Int x = 10; int y = 20; if((x< y) || (x = 5) > 10) System.out.println(x); else System.out.println(y); |
| Answer» INT x = 10int y = 20if(( x< y) ll ( x = 5) > 10 | |