JAVA Strings
What will be output?String S1 = "S1 ="+ "123"+"456";String S2 = "S2 ="+(123+456);

S1=123456,S2=123456
None of This
S1=579,S2=579
S1=123456, S2=579

ANSWER DOWNLOAD EXAMIANS APP