- You have a scenario where you are evaluating a lot of conditions. In one particular scenario, you want both operands to be evaluated and, if true, execute the code block. Which one of the following statements would you use?
- &&
- ||
- &
- ^
- You are using a for loop in your code and want to execute a specific code block if a condition is met. Which one of the following statements would you use?
- break;
- continue;
- throw;
- goto;
- In your program, there is a code block that you want to execute at least once and execute until the condition evaluates to true. Which of the following statements would you use?
- While;
- Do...while;
- For;
- foreach;