L5 Flashcards

1
Q

What are relational operators in C#?

A

Relational operators are used to compare values. Examples:

== (Equal to)

!= (Not equal to)

> (Greater than)

< (Less than)

> = (Greater than or equal to)

<= (Less than or equal to)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are logical operators in C#?

A

Logical operators are used to combine multiple conditions. Examples:

&& (AND): Both conditions must be true.

|| (OR): At least one condition must be true.

! (NOT): Reverses the condition.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the structure of an if statement?

A

The if statement checks a condition and executes code if the condition is true:

if (condition) {
// Code to execute if condition is true
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How does an if-else statement work?

A

The if-else statement executes one block of code if the condition is true, and another block if it is false:

if (condition) {
// Code if true
} else {
// Code if false
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is an else if statement used for?

A

The else if statement checks additional conditions when the first if condition is false:

if (condition1) {
// Code for condition1
} else if (condition2) {
// Code for condition2
} else {
// Code if none are true
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are nested if statements?

A

An if statement inside another if statement is called a nested if:

if (outerCondition) {
if (innerCondition) {
// Code to execute
}
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a switch statement in C#?

A

The switch statement evaluates a variable and executes code based on its value:

switch (variable) {
case value1:
// Code for value1
break;
case value2:
// Code for value2
break;
default:
// Code for no match
break;
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are best practices for a switch statement?

A

Always include a default case for unexpected inputs.

Use break to avoid fall-through behavior.

Arrange case values in ascending order for readability.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the difference between while, do-while, and for loops?

A

while: Executes as long as the condition is true.

do-while: Executes at least once, then checks the condition.

for: Executes a set number of times.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does the break statement do in loops?

A

The break statement exits the loop immediately.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does the continue statement do in loops?

A

The continue statement skips the current iteration and continues with the next one.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Example: How do you skip an iteration in a loop?

A

Use the continue statement:

for (int i = 1; i <= 5; i++) {
if (i == 3) continue; // Skips iteration when i == 3
Console.WriteLine(i);
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly