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. >Match>End
B. [No output]
C. >Match
D. >End