Sail E0 Webinar
Question
Select the output for the following set of code :
 static void Main(string[] args)  {      int i = 0, j = 0;      l1: while (i < 2)      {            i++;          while (j < 3)          {              Console.WriteLine("loop\n");              goto l1;          }       }      Console.ReadLine();  }
Options:
A .  loop is printed infinite times
B .  loop
C .  loop loop
D .  Compile time error
Answer: Option C


Since outer while loop i.e while(i


Was this answer helpful ?
Next Question

Submit Solution

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

Latest Videos

Latest Test Papers