Home / Questions / Write the output of the following:(i) System.out.println(Character.isUpperCase('R'));(ii) System.out.println(Character.toUpperCase('j'));
Explanatory Question

Write the output of the following:
(i) System.out.println(Character.isUpperCase('R'));
(ii) System.out.println(Character.toUpperCase('j'));

👁 73 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation

(i) System.out.println(Character.isUpperCase('R'));
Output: true

(ii) System.out.println(Character.toUpperCase('j'));
Output: J