Question 1  of   8

What is the output of the program below? foreach (char a in "alpha") { foreach (char b in "omega") { if (a == b) { goto Match; } } } goto End; Match: Console.Write(">Match"); End: Console.Write(">End");

A. [No output]
B. >End
C. >Match>End
D. >Match