📚 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)); }}
- Prints: false,false
- Prints: true,false
- Prints: false,true
- Prints: true,true
- None of the above