Q. In the following Java code, which code fragment should be inserted at line 3 so that the output will be:

Code:
"123abc 123abc"?
1. StringBuilder sb1 = new StringBuilder("123");
2. String s1 = "123";
3.  // insert code here
4. System.out.println(sb1 + " " + s1);
  • (A) sb1.append("abc"); s1.append("abc");
  • (B) sb1.append("abc"); s1.concat("abc");
  • (C) sb1.concat("abc"); s1.append("abc");
  • (D) sb1.append("abc"); s1 = s1.concat("abc");
πŸ’¬ Discuss
βœ… Correct Answer: (D) sb1.append("abc"); s1 = s1.concat("abc");

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
97
Total Visits
πŸ“½οΈ
1 y ago
Published
πŸŽ–οΈ
Pooja
Publisher
πŸ“ˆ
96%
Success Rate