Me and my friend was discussing on Strings and we stuck on this:
String str = \"ObjectOne\"+\"ObjectTwo\";
He says total three Object will
If you write(literals or constants)
String str = "ObjectOne"+"ObjectTwo";
it's equivalent to
String str = "ObjectOneObjectTwo"; // compiler optimize it so one Object