Quiz Yourself: C# Basics
Check your understanding of C# case sensitivity, syntax rules, type casting, and control flow structures.
We'll cover the following...
We'll cover the following...
C# Basics Quiz
1.
What is the exact output of the following code snippet?
Console.Write("Item 1");
Console.WriteLine("Item 2");
Console.Write("Item 3\n");
Console.Write("Item 4");
A.
Item 1
Item 2
Item 3
Item 4
B.
Item 1Item 2
Item 3
Item 4
C.
Item 1Item 2Item 3
Item 4
D.
Item 1Item 2
Item 3Item 4
1 / 14