1.

What would be the output for the following set of code? static void Main(string[] args) { String obj = "hello"; String obj1 = "world"; String obj2 = obj; Console.WriteLine (obj.Equals(obj2) + " " + obj2.CompareTo(obj) ); Console.ReadLine(); }

A. True True
B. False False
C. True 0
D. False 1
Answer» D. False 1


Discussion

No Comment Found