Hi Pratiti,
The '+' operator is inherently overloaded by
Java for String objects.
Also the Java API defines a concat method for String objects which concatenates the specified string to the end of the first string.
The effect of both these is bound to be the same.
I guess because the overloaded '+' operator implicitly calls the concat() method of String objects.
So you can use either of these, as long as you are comfprtable with it.
Please correct me if I am wrong.
Cheers

Kapil