KnowledgeBoat Logo
|

Computer Applications

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

Java String Handling

68 Likes

Answer


boolean res = Character.isUpperCase(chr);

Answered By

48 Likes


Related Questions