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

Basic if/else

easyConditionals

What does this code print?

📄 Code

1int x = 10;
2if (x > 5) {
3 Console.Write("big");
4} else {
5 Console.Write("small");
6}