Computer Applications

Distinguish between isUpperCase() and toUpperCase()

Java Library Classes

2 Likes

Answer

isUpperCase( )toUpperCase( )
isUpperCase( ) function checks if a given character is in upper case or not.toUpperCase( ) function converts a given character to upper case.
Its return type is boolean.Its return type is char.

Answered By

3 Likes


Related Questions