Shortcut Navigation:

C NET Code Quiz

What does the following C#.NET code snippet will print?  int i = 0, j = 0;label:i++;j+=i;if (i < 10){Console.Write(i +" ");goto label;}

Which of the following is the correct output for the C#.NET program given below?  int i = 20 ;for( ; ; ){Console.Write(i + " ");if (i >= -10)i -= 4;elsebreak;}

Which of the following statements is correct?

What is the output of the C#.NET code snippet given below?  namespace IndiabixConsoleApplication{public enum color{ red, green, blue };class SampleProgram{static void Main (string[ ] args){color c = color.blue;switch (c){case color.red:Console.WriteLine(color.red);break;case color.green:Console.WriteLine(color.green);break;case color.blue:Console.WriteLine(color.blue);break;}}}}

Which of the following is the correct way to rewrite the following C#.NET code snippet given below?  int i = 0;do{Console.WriteLine(i);i+ = 1;} while (i <= 10);

What will be the output of the C#.NET code snippet given below?  int val;for (val = -5; val <= 5; val++){switch (val){case 0:Console.Write ("India");break;}if (val > 0)Console.Write ("B");else if (val < 0)Console.Write ("X");}

What will be the output of the C#.NET code snippet given below?  char ch = Convert.ToChar ('a' | 'b' | 'c');switch (ch){case 'A':case 'a':Console.WriteLine ("case A | case a");break;case 'B':case 'b':Console.WriteLine ("case B | case b");break;case 'C':case 'c':case 'D':case 'd':Console.WriteLine ("case D | case d");break;}

Which of the following is the incorrect form of Decision Control instruction?

Which of the following code snippets are the correct way to determine whether a is Odd or Even?  
  1. int a;String res;if (a % 2 == 0)res = "Even";elseres = "Odd";
  2. int a;String res;if (a Mod 2 == 0)res = "Even";elseres = "Odd";
  3. int a;Console.WriteLine(a Mod 2 == 0 ? "Even": "Odd");
  4. int a;String res;a % 2 == 0 ? res = "Even" : res = "Odd";Console.WriteLine(res);

Which of the following can be used to terminate a while loop and transfer control outside the loop?  
  1. exit while
  2. continue
  3. exit statement
  4. break
  5. goto