C Sharp - Control Instructions Questions and Answers

Practice Mode
Showing 10 of 14 questions
Q1
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; }
  • A Prints 1 to 9
  • B Prints 0 to 8
  • C Prints 2 to 8
  • D Prints 2 to 9
Answer: Option A
Q2
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;     else         break; }
  • A 20 16 12 84 0 -4 -8
  • B 20 16 12 8 4 0
  • C 20 16 12 8 4 0 -4 -8 -12
  • D 16 12 8 4 0
Answer: Option C
Q3
Which of the following statements is correct?
  • A It is not possible to extend the if statement to handle multiple conditions using the else-if arrangement.
  • B The switch statement can include any number of case instances with two case statements having the same value.
  • C A jump statement such as a break is required after each case block excluding the last block if it is a default statement.
  • D The if statement selects a statement for execution based on the value of a Boolean expression.
Answer: Option D
Q4
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"); }
  • A XXXXXIndia
  • B IndiaBBBBB
  • C XXXXXIndiaBBBBB
  • D BBBBBIndiaXXXXX
Answer: Option C
Q5
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; }
  • A case A | case a
  • B case B | case b
  • C case D | case d
  • D Compile Error
Answer: Option C
Q6
Which of the following can be used to terminate a while loop and transfer control outside the loop?     exit while     continue     exit statement     break     goto
  • A 1, 3
  • B 2, 4
  • C 3, 5
  • D 4, 5
Answer: Option D
Q7
The C#.NET code snippet given below generates ____ numbers series as output? int i = 1, j = 1, val; while (i < 25) {     Console.Write(j + " ");     val = i + j;     j = i;     i = val; }
  • A Prime
  • B Fibonacci
  • C Palindrome
  • D Odd
Answer: Option B
Q8
Which of the following statements are correct about the C#.NET code snippet given below? if (age > 18 && no < 11)     a = 25;     The condition no < 11 will be evaluated only if age > 18 evaluates to True.     The statement a = 25 will get executed if any one condition is True.     The condition no < 11 will be evaluated only if age > 18 evaluates to False.     The statement a = 25 will get executed if both the conditions are True.     && is known as a short circuiting logical operator. A.     1, 3
  • A 2, 5
  • B 1, 4, 5
  • C 3, 4, 5
  • D None of these
Answer: Option C
Q9
Which of the following statements are correct?     A switch statement can act on numerical as well as Boolean types.     A switch statement can act on characters, strings and enumerations types.     We cannot declare variables within a case statement if it is not enclosed by { }.     The foreach statement is used to iterate through the collection to get the desired information and should be used to change the contents of the collection to avoid unpredictable side effects.     All of the expressions of the for statement are not optional.
  • A 1, 2
  • B 2, 3
  • C 3, 5
  • D 4, 5
Answer: Option A
Q10
What will be the output of the C#.NET code snippet given below? int i = 2, j = i; if (Convert.ToBoolean((i | j & 5) & (j - 25 * 1)))     Console.WriteLine(1); else     Console.WriteLine(0);
  • A 0
  • B 1
  • C Compile Error
  • D Run time Error
Answer: Option A
Questions and Answers for Competitive Exams Various Entrance Test