adplus-dvertising
frame-decoration

Question

Select output for the following set of 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

d.

0 1 2 3 4

Answer: (c).0 1 2 3

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Select output for the following set of Code: