Predict the output:
class me
{
public static void main(String[]args)
{
String s1="hello";
String s2="bye".concat(s1);
// s1.concat(s2);
System.out.println(s1);
}
}

Posted on by