Here\'s the code snippet:
public static void main (String[]arg) { char ca = \'a\' ; char cb = \'b\' ; System.out.println (ca + cb) ; }
I don't speak Java, but 195 is 97 + 98 = the ASCII codes for a and b. So obviously, ca and cb are interpreted as their integer values, probably because of the + addition which does not seem to lead to a string concatenation automatically.
a
b
ca
cb
+