📚 Practice Mode

Java Programming Fundamentals and Collections

Learn at your own pace with hints and detailed explanations

1 / 20
Multiple Choice

class H { public static void main (String[] args) { String s1 = "HHH"; StringBuffer sb2 = new StringBuffer(s1); System.out.print(sb2.equals(s1) + "," + s1.equals(sb2)); }}

  1. Prints: false,false
  2. Prints: true,false
  3. Prints: false,true
  4. Prints: true,true
  5. None of the above