InterviewSolution
Saved Bookmarks
| 1. |
Find the errors in the below code & rewrite the code: (a) long x = 10; y = 50;System.out.print ("x + /t + y"); |
| Answer» CT syntax.Correct:LONG X = 10, y = 50;System.out.println( x + y ); | |