I have the following class:
public class Go { public static void main(String args[]) { System.out.println(\"G\" + \"o\"); System.out.prin
+ operator with character constant 'G' + 'o' prints addition of charCode and string concatenation operator with "G" + "o" will prints Go.
+
'G' + 'o'
"G" + "o"
Go