L6 Flashcards

1
Q

What does an if statement do in C#?

A

Executes code if the condition is true.

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

How does a while loop work?

A

Repeats code as long as the condition is true.

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

What is the difference between a while loop and a do-while loop?

A

A do-while loop executes the body at least once before checking the condition.

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

How does a for loop differ from a while loop?

A

A for loop is used when the number of iterations is known, with initialization, condition, and increment/decrement in a single line.

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

What does the break statement do in a loop?

A

It exits the loop immediately.

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

What does the continue statement do in a loop?

A

Skips the current iteration and proceeds to the next one.

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

What is the purpose of a foreach loop?

A

Iterates over each element in a collection or array.

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

What is the structure of a switch-case statement?

A

Evaluates a variable and executes code based on matching cases:

switch (variable) {
case value1:
// Code
break;
default:
// Code
break;
}

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

When should nested loops be used?

A

When multi-level iteration over data is needed, such as iterating through rows and columns in a table.

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

What happens if the condition in a while loop is false initially?

A

The loop body is never executed.

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