Blog

What is the output of the code below?

String v = “Hello World”
String y = v;
Console.WriteLine((v == y) + “ ” + v.Equals(y));