KnowledgeBoat Logo

Computer Applications

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

Java String Handling

63 Likes

Answer


boolean res = Character.isUpperCase(chr);

Answered By

44 Likes


Related Questions