A
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);
}
}
- Correct Answer - Option(D)
- Views: 10
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.