In: Computer Science
Assume that aa = "11", bb = "22", m = 5 and n = 7. How do the following two statements differ?
System.out.println(aa + bb + m + n);
System.out.println(m + n + aa + bb);
Explain your answers in details. Only clear explanations will be given marks.