Understanding C# Conditional Statements

Understanding C# Conditional Statements

11th Grade

16 Qs

quiz-placeholder

Similar activities

JS: Conditionals!

JS: Conditionals!

6th Grade - University

11 Qs

C# Structured, Selection and Iteration

C# Structured, Selection and Iteration

9th Grade - University

15 Qs

Pemrograman C++ (Dasar)

Pemrograman C++ (Dasar)

11th Grade

18 Qs

uCertify JavaScript Chapter 5

uCertify JavaScript Chapter 5

9th - 12th Grade

20 Qs

Python Basics Quiz 1

Python Basics Quiz 1

8th Grade - University

15 Qs

Search skills

Search skills

5th Grade - University

20 Qs

Flow of Control

Flow of Control

11th - 12th Grade

18 Qs

Storage Devices

Storage Devices

1st - 11th Grade

12 Qs

Understanding C# Conditional Statements

Understanding C# Conditional Statements

Assessment

Quiz

Computers

11th Grade

Easy

Created by

Emily Chard

Used 6+ times

FREE Resource

16 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following C# code snippet? ```csharp int a = 5; if (a == 5) { Console.WriteLine("Equal"); } ```

No output

Equal

Error

Not Equal

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following C# code: ```csharp int b = 10; if (b != 10) { Console.WriteLine("Not Equal"); } else { Console.WriteLine("Equal"); } ``` What will be printed?

Not Equal

Equal

Error

No output

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In C#, which of the following operators is used to check if two values are not equal?

==

!=

>

<

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following C# code snippet? ```csharp int c = 15; if (c > 10) { Console.WriteLine("Greater"); } else { Console.WriteLine("Not Greater"); } ```

Greater

Not Greater

Error

No output

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following C# statements correctly checks if a variable `d` is less than or equal to 20?

if (d < 20)

if (d <= 20)

if (d == 20)

if (d >= 20)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following C# code snippet? ```csharp int e = 25; if (e < 20) { Console.WriteLine("Less"); } else if (e == 25) { Console.WriteLine("Equal"); } else { Console.WriteLine("Greater"); } ```

Less

Equal

Greater

Error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a C# switch statement, which keyword is used to exit a case block?

exit

break

continue

stop

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?