A

Admin • 825.56K 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");
s1.insert(1,"Java");
System.out.println(s1);
}
}

  • (A) hello
  • (B) java
  • (C) Hello Java
  • (D) HJavaello
  • 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.