Quiz Yourself: C# Basics

Check your understanding of C# case sensitivity, syntax rules, type casting, and control flow structures.

We'll cover the following...

C# Basics Quiz

1.

Analyze the output of this do...while loop:

int x = 5;
do 
{
    Console.Write(x--);
} 
while (x > 5);

What is the output?

A.

5

B.

4

C.

54

D.

Nothing is printed.


1 / 14