C# MCQ – Control Statements in C# – if, else, switch…
Multiple choice questions and answers (MCQs) on C# to prepare for exams, tests, and certifications. These questions are taken from a real written exam and some parts are taken from an interview. So you will find questions on basic techniques such as Variables, Operators, Conditional Statement, Functions, and more. This quiz will easily prepare anyone to pass their online test.
[st_adsense]
1. What is the output of the following C# code?
int i = 0, j = 0; label: i++; j+=i; if (i < 10) { Console.Write(i +" "); goto label; }
A Display 1 to 9
B Display 0 to 8
C Display 2 to 8
D Display 2 to 9
E Compilation error at “label:”
2. What is the output of the following C# code?
int i = 10; for( ; ; ) { Console.Write(i + " "); if (i >= -5) i -= 2; else break; }
A 10 8 6 4 2 0
B 10 8 6 4 2 0 -4 -8
C 8 6 4 2 0
D 10 8 6 4 2 0 -2 -4 -6
E 8 0 -8
3. What is the output of the following C# code?
namespace StackHowToApp { public enum color{ brown, orange, green}; class ColorApp { static void Main (string[ ] args) { color c = color.green; switch (c) { case color.brown: Console.WriteLine(color.brown); break; case color.orange: Console.WriteLine(color.orange); break; case color.green: Console.WriteLine(color.green); break; } } } }
A brown
B orange
C green
D 0
E 2
[st_adsense]
4. What is the output of the following C# code?
int val; for (val = -5; val <= 5; val++) { switch (val) { case 0: Console.Write ("tackHowT"); break; } if (val > 0) Console.Write ("S"); else if (val < 0) Console.Write ("o"); }
A StackHowTo
B tackHowTooooo
C SSSSStackHowTooooo
D SSSSStackHowT
E SSSSSooooo
5. Which of the following can be used to end a while loop and pass control outside the loop?
A break
B goto
C exit while
D continue
E exit statement
6. The C# .NET code snippet given below generates a series of ____ in output?
int i = 1, j = 1, val; while (i < 35) { Console.Write(j + " "); val = i + j; j = i; i = val; }
A Even numbers
B Odd numbers
C Palindrome
D Fibonacci
E Prime
[st_adsense]
7. What is the output of the following C# code?
int i = 2, j = i; if (Convert.ToBoolean((i | j & 5) & (j - 15 * 1))) Console.WriteLine(1); else Console.WriteLine(0);
A 0
B 1
C Compilation error
D Runtime error
8. What is the output of the following C# code?
int i; for(i = 0; i<=10; i++) { if(i == 2) { Console.Write(i + " "); continue; } else if (i != 2) Console.Write(i + " "); else break; }
A 0 1 2
B 2
C 0 1 2 3 4 5 6 7 8 9 10
D 3 4 5 6 7 8 9 10
[st_adsense]
9. Which of the following statements is correct?
A It is not possible to extend the “if” statement to handle multiple conditions using “else-if”.
B The “switch” instruction can have two cases with the same value.
C The “break” instruction is required after each “case” block, except for the last block if it is a “default” instruction.
D The “if” statement selects a statement to execute based on the value of a Boolean expression.
10. Which of the following statements is correct?
A The “switch” instruction can be used on numerical types as well as on Boolean types.
B The “switch” instruction can be used on the following types: char, string and enum.
C We cannot declare variables in a “case” statement if it is not surrounded by {}.
D Not all expressions in the “for” statement are optional.
[st_adsense]