CJCoding With Joseph
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C# Quiz #46

switch Case Selection

easyConditionals

What does this code print?

📄 Code

1int day = 2;
2switch (day) {
3 case 1: Console.Write("Mon"); break;
4 case 2: Console.Write("Tue"); break;
5 default: Console.Write("Other"); break;
6}