A
Q. What will be the output of the following Java program?
class output
{
public static void main(String args[])
{
StringBuffer c = new StringBuffer("Hello");
c.delete(0,2);
System.out.println(c);
}
}
- Correct Answer - Option(D)
- Views: 10
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.