Java Programming Fundamentals and Collections
Casual Mode - Take your time!
1 / 20
Correct
0
Incorrect
0
Score
0%
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