What is the output of the given program?
StringBuilder sb = new StringBuilder ();
String h1 = HelloWorld;
sb.append(Hello).append (world);
if (h1 == sb.toString())
{
System.out.println(They match);
}
if (h1.equals(sb.toString()))
{
System.out.println(They really match);
}
Reveal answer
Fill a bubble to check yourself