import java.lang.*;
class hello
{
public static void main(String args[])
{
StringBuffer s3 = new StringBuffer("R");
String s1 = "Rahul";
char ch = s1.charAt(0);
System.out.println(s3.toString().equals(ch));
}
}
Output should be TRUE but it is showing false. Please help.