多选题
Given:
42. String s1 = " ";
43. StringBuffer s2 = new StringBuffer(" ");
44. StringBuilder s3 = new StringBuilder(" ");
45. for(int i = 0; i < 1000; i++) // Loop #1
46. s1 = s1.concat("a");
47. for(int i = 0; i < 1000; i++) // Loop #2
48. s2. append ("a");
49. for(int i = 0; i < i000; i++) // Loop #3
50. s3. append ("a");
Which statements will typically be true? (Choose all that apply.)