Sail E0 Webinar
Question


What is the output of this program?


class output {
public static void main(String args[])
{
StringBuffer s1 = new StringBuffer("Hello");
s1.setCharAt(1,x);
System.out.println(s1);
}
}
Options:
A .  xello
B .  xxxxx
C .  Hxllo
D .  Hexlo
Answer: Option C

None.
Output:
$ javac output.java
$ java output
Hxllo



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers