Computer Science, asked by mrknowledge624siri, 9 months ago

System.out.println(Character.toLowerCase(‘A’)+Character.toUppercase(‘a’)); give output

Answers

Answered by BLANKBABA
0

Answer:

aA

mark me brainliest pls

Answered by nalinipriyadharshini
0

Answer:

here is the answer

Explanation:

The java.lang.Character.toUpperCase(char ch) converts the character argument to uppercase using case mapping information from the UnicodeData file.

Note that Character.isUpperCase(Character.toUpperCase(ch)) does not always return true for some ranges of characters, particularly those that are symbols or ideographs.

Declaration

Following is the declaration for java.lang.Character.toUpperCase() method

Similar questions