Advertisements
Advertisements
Question
Find the output of the following program snippet:
int n = 97;
char ch = Character.toUpperCase((char)n);
System.out.println(ch + "Great Victory");
One Line Answer
Solution
A Great Victory 70
shaalaa.com
Is there an error in this question or solution?