class A {
public static void main(String[] args) {
char a = 'a'; // 'a' = 97
char b = 'b'; // 'b' = 98
System.out.print(a + b + "" + a + b);
}
}
What is the result of attempting to compile and run the above program?
a. Prints: 290
b. Prints: 195195
c. Prints: 195ab
d. Prints: ab195
e. Prints: abab
f. Runtime error
g. Compiler error
h. None of the above
