For help with these questions, please see the page on Java Chars!
What is the output of the following line of code?
System.out.println('i' + 's');
The following line of code performs widening primitive conversion:
System.out.println('B' + "ig");
What is the output of the following line of code?
System.out.println("2 + 2 = " + 2 + 2);
Which line of code runs without any problems?
char temp2 = 'i' * 'o' / 100;
char temp = 'i' - "o";
System.out.println(5 < "z");