MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the given set of Code? class Program { static void Main(string[] args) { String s1 = "I love You"; String s2 = s1; Console.WriteLine((s1 == s2) + " " + s1.Equals(s2)); Console.ReadLine(); } } |
| A. | True true |
| B. | False false |
| C. | True false |
| D. | False true |
| Answer» B. False false | |