What will be the output of the following program?
class Program
{
    static void Main(string[] args)
    { 
        String s1 = "I love belgaum";
        String s2 = s1;
        Console.WriteLine((s1 == s2) + " " + s1.Equals(s2));
        Console.ReadLine();
    }
}

Posted on by