What will be the output of the following Main program in a C# console application (Assume required namespaces are included): static void Main(string[] args) { string s = null + true; Console.WriteLine(s); Console.ReadLine(); }
Correct Answer: True
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More C# MCQ Questions