What does the below code prints?


public static Aiml 
{
public static void main (String [] args)
{
StringBuffer s1 = new StringBuffer("teju");
s1.setCharAt(1,'a');
s1.setCharAt(2,'n');
System.out.println(s1);
}
}

Posted on by