Given three String variables, a, b, and c, which of thefollowing statements could you use to achieve the same thingas:
c = a + b;
c = a.length() + b.length();
c = (int)a + (int)b;
c = a.concat(b);
c = b.concat(a);
c = a.plus(b);
Expert Answer
An answer will be send to you shortly. . . . .