0
What will be the output.
Guess the tricky output public class A { public static void main(String[] args) { System.out.println('j' + 'a' + 'v' + 'a'); } }
1 Antwort
+ 5
ascii code:
j : 106
a : 97
v : 118
-> j + a + v + a = 106 + 97 + 118 + 97
-> output: 418