Question
static void Main(string[] args)
{
int i = 0;
while (i <= 50)
{
if (i % 10 == 0)
continue;
else
break;
i += 10;
Console.WriteLine(i % 10);
}
}
a.
code prints output as 0 0 0 0 0
b.
code prints output as 10 20 30 40 50
c.
infinite loop but donot print anything
d.
Code generate error
Posted under C# programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. Select the output for the following set of code :
Similar Questions
Discover Related MCQs
Q. Which of the following is not infinite loop?
View solution
Q. Which statement is correct among the mentioned statements?
1. The for loop works faster than a while loop
2. for( ; ; )implements an infinite loop
View solution
Q. Which of the following statements are correct?
1. A switch statement can act on numerical as well as Boolean types.
2. A switch statement can act on characters, strings and enumerations types.
3. We cannot declare variables within a case statement if it is not enclosed by { }.
4. The foreach statement is used to iterate through the collection to get the desired information and should be used to change the contents of the collection to avoid unpredictable side effects.
5. All of the expressions of the for statement are not optional.
View solution
Q. Which of the following is the incorrect form of Decision Control instruction?
View solution
Q. Which of the following statements is correct?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C# programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!