Site Search:

Flash Card List 2 -- Card 11

Prev Next


What is the output of the following code snippets?
  3     System.out.println(11 + (3) + "11");
  4     System.out.println("11" + (3) + (11));


1411
11311