InterviewSolution
Saved Bookmarks
| 1. |
Given a String object named 'code' having value as "908" stored in it. What will be result of the following?JOptionPane.showMessageDialog(null, " " + (code.length( ) + Integer.parseInt(code))); |
|
Answer» The correct output 911 |
|