L6 Flashcards
What does an if statement do in C#?
Executes code if the condition is true.
How does a while loop work?
Repeats code as long as the condition is true.
What is the difference between a while loop and a do-while loop?
A do-while loop executes the body at least once before checking the condition.
How does a for loop differ from a while loop?
A for loop is used when the number of iterations is known, with initialization, condition, and increment/decrement in a single line.
What does the break statement do in a loop?
It exits the loop immediately.
What does the continue statement do in a loop?
Skips the current iteration and proceeds to the next one.
What is the purpose of a foreach loop?
Iterates over each element in a collection or array.
What is the structure of a switch-case statement?
Evaluates a variable and executes code based on matching cases:
switch (variable) {
case value1:
// Code
break;
default:
// Code
break;
}
When should nested loops be used?
When multi-level iteration over data is needed, such as iterating through rows and columns in a table.
What happens if the condition in a while loop is false initially?
The loop body is never executed.