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)); }}

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