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 #17

switch Statement Output

mediumConditionals

What does this code print?

📄 Code

1int x = 2;
2switch (x) {
3 case 1:
4 Console.Write("one");
5 break;
6 case 2:
7 Console.Write("two");
8 break;
9 default:
10 Console.Write("other");
11 break;
12}