Computer Applications

Write down the syntax to check whether a character(chr) is in upper case or not.

Java String Handling

70 Likes

Answer


boolean res = Character.isUpperCase(chr);

Answered By

49 Likes


Related Questions