CLASSES WITHIN THE SAME ASSEMBLY, AND CLASSES DERIVED FROM THE DECL...

4. Classes within the same assembly, and classes derived from the declaring class Question 100 : What is the output of following C# code? using System; class MainClass { static void Main() { Console.Write(“{0}{1}{2}{3}”,true^true,true^false, false^true,false^false); } } Select answer