

InterviewSolution
Saved Bookmarks
1. |
Write a difference between the functions isUpperCase( ) and toUpperCase( ). |
Answer» The isUpperCase( ) method is used to check whether the given character is in upper case or not. It returns Boolean data type. The toUpperCase( ) method is used to convert a character or string into upper case. It returns char or String type. |
|