InterviewSolution
Saved Bookmarks
| 1. |
Give the output of the following code :String P = “20”, Q = “19”, int a = Integer .parselnt(P); int b = Integer. valueOf(Q); System.out.println(a+””+b); |
|
Answer» The output is 2019 |
|