

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of this program? class Output { public static void main(String args[]) { char a = (char) 98; a = Character.toUpperCase(a); System.out.print(a); } } |
A. | b |
B. | c |
C. | B |
D. | C |
Answer» D. C | |