✏️ Explanatory Question
char ch = 'F'; int m = ch; m=m+5; System.out.println(m + " " + ch);
Output of the above code is:
75 F
The statement int m = ch; assigns the ASCII value of F (which is 70) to variable m. Adding 5 to m makes it 75. In the println statement, the current value of m which is 75 is printed followed by space and then value of ch which is F.