InterviewSolution
Saved Bookmarks
| 1. |
What will be the output of the following code. Show the working whererequired int k = 5, j = 9;k + = k++ – ++j + k;System.out.println("k = "+k);System.out.println("j = "+j);System.out.println(Math.cbrt(Math.abs(-64))); |
|
Answer» Answer: sorry don't know |
|