A

Admin • 828.03K Points
Coach

Q. What will be the output of the following Java code?
class output
{
public static void main(String args[])
{
StringBuffer s1 = new StringBuffer("Hello World");
s1.insert(6 , "Good ");
System.out.println(s1);
}
}

  • (A) HelloGoodWorld
  • (B) HellGoodoWorld
  • (C) HellGood oWorld
  • (D) Hello Good World
  • Correct Answer - Option(D)
  • Views: 10
  • Filed under category Java
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.