lenelex.com
Home
Quizzes
Games
Register
Log in
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. >End
B. >Match
C. [No output]
D. >Match>End
Links:
The Goto Statement