Please help me the output to these 4 question C#
Extracted text: return (uint, (17) static void Main() { uint A, B; (18) static void Main() { uint A, B; A = 3;B = 4; Console.WriteLine ("{0} {1}",A,B); Method1(ref A,B); Console.WriteLine (" {0} {1}",A,B); B = 4; A = 3; Console.WriteLine("{0} {1}",A,B); Methodl(A,B); Console.WriteLine ("{0} {1}",A,B); static void Method1 (uint X, uint Y) { uint temp; static void Methodi(ref uint X, uint Y) { uint temp; temp = X; X = Y; Y = temp; temp = X; X = Y; Y = temp; (19) static void Main() (20) static void Main() { uint A, B; uint A, B; A = 3;B = 4; Console.WriteLine ("{0} {1}",A,B); A = 3; Console.WriteLine ("{o} {1}",A, B); Methodl (A, ref B); Console.WriteLine ("{0} {1}",A,B); } B = 4; Methodl(ref A, ref B); Console.WriteLine ("{0} {1}",A,B); static void Methodl (uint X, ref uint Y) static void Methodl (ref uint X, ref uint Y) uint temp; uint temp; temp = X; X = Y; Y = temp; temp = X; X = Y; Y = temp;