Vidyalelo
C# Programming · Q78

Control Flow Statements in C Sharp

Programming · C# Programming · question 78

Q78

What will be the output of the following C# code? static void Main(string[] args) int i, j; for (i = 1; i <= 3; i++) j = 1; while (i % j == 2) j++; Console.WriteLine(i + " " + j); Console.ReadLine();

A.
112131
B.
1 12 13 1
C.
11 21 31
Answer
D.
1 1 2 1 3 1

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board