Sail E0 Webinar
Question
Select the output for the following set of code :
 static void Main(string[] args)  {      int  i = 9 , j = 7;      switch (i - j + 3)      {      case 9: 7:          j += 6;          break;      case 5:          i -= 4;          break;      }      Console.WriteLine(i + "\n" + j);      Console.ReadLine();  }
Options:
A .  5 7
B .  9 13
C .  Compile time error
D .  9 7
Answer: Option C


Invalid expression'7:' in case 9:7:.



Was this answer helpful ?

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers