All for C# 1 of 10 The condition of a while loop must evaluate to true for execu
ID: 3753653 • Letter: A
Question
All for C#
1 of 10
The condition of a while loop must evaluate to true for execution to continue.
Question
2 of 10
Which of the following is not a keyword used to enable unconditional transfer of control to a different program statement?
Question
3 of 10
What is the last value that will be printed in the program statement below?
int counter = 0;
while (counter < 100)
{
Console.WriteLine(counter);
counter++;
}
Question
4 of 10
How many times would the loop below execute?
int i = 0;
while(i < 3)
{
Console.WriteLine(i);
}
Question
5 of 10
To prime the read with a loop, you need to place an input statement ____.
Question
6 of 10
Given the code below, the variable i defined below ____.
for(int i = 0; i < 3; i++)
{
Console.WriteLine(i);
}
Question
7 of 10
When using a foreach statement, you iterate over the items in a collection.
Question
8 of 10
The conditional expression used with the for statement ____.
Question
9 of 10
How many times would the loop below execute?
int i = 0;
while(i < 3)
{
Console.WriteLine(i);
i++;
}
Question
10 of 10
How many times would the loop below execute?
int x = 5;
do
{
Console.WriteLine(x);
}
while (x < 5);
Console.ReadLine();
True FalseExplanation / Answer
1) True 2) while 3) 99 4) Infinite 5) inside the loop body -> (not sure about this one) 6) is out of scope when the loop terminates 7) True 8) is written following the first semicolon 9) 3 10) 1
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.