Computer Applications

State the method that determines, if the specified character is an uppercase character.

Java Library Classes

3 Likes

Answer

isUpperCase(char) method determines, if the specified character is an uppercase character. It returns true if the character is upper case, else it returns false.

Answered By

2 Likes


Related Questions