InterviewSolution
Saved Bookmarks
| 1. |
Write the output for the following :String s= “Today is Test”; System.out.println(s.indexOf(‘T’)); System.out.println(s.substring(0, 7) + ” ” + “Holiday”); |
|
Answer» 0 Today i Holiday |
|