Computer Science, asked by premnitnaware1282, 10 months ago

Write the output of the following system.out.println(character.is uppercase ('R');

Answers

Answered by hoangmustang
6

Answer:

The output is true.

But i need to rewrite your statement as:

System.out.println(Character.isUpperCase('R'));

Explanation:

Answered by anindyaadhikari13
11

<hr/>

The output is true.

This is because R is in uppercase and so it returns a boolean value which is true.

<hr/>

Similar questions