Saved Bookmarks
| 1. |
What will be the out of the the following code if value of x=9if(x++ ==11) System.out.println("Result is 11");else if (++x==10) System.out.println("Result is 9");else if( --x==10) System.out.println("Result is 10");else System.out.println("Result is Neither 10 nor 11") |
|
Answer» Explanation: |
|