Computer Applications
Write the output of the following:
- System.out.println(Character.isUpperCase('R'));
- System.out.println(Character.toUpperCase('j'));
Java
Java Library Classes
ICSE 2011
16 Likes
Answer
- true
- J
Answered By
7 Likes
Related Questions
The method to convert a lowercase character to uppercase is:
- String.toUpperCase( )
- Character.isUppercase( char )
- Character.toUpperCase( char )
- toUpperCase ( )
Give the output of the following code:
String P = "20", Q ="19"; int a = Integer.parseInt(P); int b = Integer.valueOf(Q); System.out.println(a+""+b);Differentiate between boxing and unboxing.