InterviewSolution
Saved Bookmarks
| 1. |
What will be the output when the following code segments are executed ? (i) String s = “1001”; int x = Integer. valueOf(s); double y = Double.valueOf(s); System.out.println(“x=”+x); System.out.println(“y=”+y); System.out.println(“The king said\”Begin at the beginning!\“to me.”); |
|
Answer» The output is: (i) x = 1001 y = 1001.000000 (ii) The king said “Begin at the beginning !” to me. |
|