Q35
What will be the output of the following C# code? static void Main(string[] args) int i; int b = 8, a = 32; for (i = 0; i <= 10; i++) if ((a / b * 2)== 2) Console.WriteLine( i + " "); continue; else if (i != 4) Console.Write(i + " "); else break; Console.ReadLine();
A.
1 2 3 4 5 6 7 8 9
B.
0 1 2 3 4 5 6 7 8
C.
0 1 2 3
AnswerD.
0 1 2 3 4
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board