+
is string concatenation operator and it is used for conversion
of other objects to strings (based upon the implementation of toString() method) and also concatenate
two strings.
String str1="Hello";
String str2="World"
String result=str1 + " " + str2;