Question: 1) for (int i = 0; i < 5; i++) Console.Write(i + t); Given the code snippet above, how many times will the loop body
1) for (int i = 0; i < 5; i++) Console.Write(i + \t);
Given the code snippet above, how many times will the loop body be executed?
2) for (int outer = 0; outer < 2; outer++) { for (int inner = 0; inner < 3; inner++) { Console.WriteLine("Outer: {0}\tInner: {1}", outer, inner); } }
How many lines will be printed for the above nested loop?
3)
for (int outer = 0; outer < 2; outer++) { for (int inner = 0; inner < 3; inner++) { Console.WriteLine("Outer: {0}\tInner: {1}", outer, inner); } }
During the last iteration through the nested loop, what numbers are printed?
| a. | Outer: 2 Inner 3 | |
| b. | Outer: 1 Inner: 2 | |
| c. | Outer: 1 Inner 0 | |
| d. | Outer: 3 Inner 0 |
4)
int counter = 0; while (counter < 100) { Console.WriteLine(counter); counter++; }
Looking above, if the loop body was changed from counter++; to counter += 5;, how many times would the loop body be executed?
| a. | 19 | |
| b. | 20 | |
| c. | 99 | |
| d. | 100 |
5)
int counter = 0; while (counter < 100) { Console.WriteLine(counter); counter++; }
The first value printed with the program segment above is ____.
| a. | 0 | |
| b. | 1 | |
| c. | 99 | |
| d. | 100 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
