✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
String a = "hello";
String b = new String("hello");
System.out.println(a == b);
System.out.println(a.equals(b));