adplus-dvertising
frame-decoration

Question

Select output for the following set of code :
static void Main(string[] args)
 {
     int i = 2, j = 3, k = 4;
     switch (i + j - k)
     {
     case 0: case 2: case 4:
         ++i;
         k += j;
         break;
     case 1: case 3: case 5 :
         --i;
         k -= j;
         break;
     default:
         i += j;
         break;
     }
     Console.WriteLine(i + "\n" + j + "\n" + k);
     Console.ReadLine();
 }

a.

1 3 1

b.

2 3 4

c.

5 3 4

d.

Compile time error.

Answer: (a).1 3 1

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 :