KnowledgeBoat Logo
|

Computer Applications

The method to determine whether the specified char value is in uppercase or not.

  1. toUpperCase(char)
  2. toLowerCase(char)
  3. isLowerCase(char)
  4. isUpperCase(char)

Java Library Classes

10 Likes

Answer

isUpperCase(char)

Reason — isUpperCase() is used to check if the character given as its argument is in upper case or not. It returns true if the argument is in uppercase, else returns false.

Answered By

3 Likes


Related Questions