Search⌘ K
AI Features

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.

Which of the following lines of code will cause a compilation error?

A.

int x = (5 > 3) ? 10 : 20;

B.

string s = (true) ? "Yes" : "No";

C.

(age >= 18) ? Console.WriteLine("Adult") : Console.WriteLine("Minor");

D.

bool check = (10 == 10) ? true : false;


1 / 14