MCQOPTIONS
Saved Bookmarks
This section includes 20 Mcqs, each offering curated multiple-choice questions to sharpen your C Sharp Programming knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
Which of the following is the incorrect form of Decision Control instruction? |
| A. | if (Condition1) {// Some statement} |
| B. | if (Condition1) {// Some statement} else {// Some statement} |
| C. | if (Condition1) {// Some statement} else {// Some statement} else if ( Condition2){//Some statement} |
| D. | if ( Condition1 ) {// Some statement} else if ( Condition2 ) {// Some statement} else {// Some statement} |
| Answer» D. if ( Condition1 ) {// Some statement} else if ( Condition2 ) {// Some statement} else {// Some statement} | |
| 2. |
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» B. 2, 3 | |
| 3. |
Which of the following loop correctly prints the elements of the array? char[ ] arr = new char[ ] {'k', 'i','C', 'i','t'} ; |
| A. | do { Console.WriteLine((char) i); } while (int i = 0; i < arr; i++); |
| B. | foreach (int i in arr) { Console.WriteLine((char) i); } |
| C. | for (int i = 0; i < arr; i++) { Console.WriteLine((char) i); } |
| D. | while (int i = 0; i < arr; i++) { Console.WriteLine((char) i); } |
| Answer» C. for (int i = 0; i < arr; i++) { Console.WriteLine((char) i); } | |
| 4. |
Which of the following statements is correct about the C#.NET code snippet given below? switch (id) { case 6: grp = "Grp B"; break; case 13: grp = "Grp D"; break; case 1: grp = "Grp A"; break; case ls > 20: grp = "Grp E"; break ; case Else: grp = "Grp F"; break; } |
| A. | Compiler will report an error in case ls > 20 as well as in case Else. |
| B. | There is no error in this switch case statement. |
| C. | Compiler will report an error only in case Else. |
| D. | Compiler will report an error as there is no default case. |
| Answer» B. There is no error in this switch case statement. | |
| 5. |
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» D. Compile Error | |
| 6. |
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 get evaluated only if age > 18 evaluates to False. The condition no < 11 will get evaluated if age > 18 evaluates to True. The statement a = 25 will get evaluated if any one one of the two conditions is True. || is known as a short circuiting logical operator. The statement a = 25 will get evaluated only if both the conditions are True. |
| A. | 1, 4, 5 |
| B. | 2, 4 |
| C. | 1, 3, 4 |
| D. | 2, 3, 5 |
| Answer» D. 2, 3, 5 | |
| 7. |
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 |
| B. | 2, 5 |
| C. | 1, 4, 5 |
| D. | 3, 4, 5 |
| Answer» D. 3, 4, 5 | |
| 8. |
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» B. 1 | |
| 9. |
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» E. | |
| 10. |
Which of the following statements are correct? The switch statement is a control statement that handles multiple selections and enumerations by passing control to one of the case statements within its body. The goto statement passes control to the next iteration of the enclosing iteration statement in which it appears. Branching is performed using jump statements which cause an immediate transfer of the program control. A common use of continue is to transfer control to a specific switch-case label or the default label in a switch statement. The do statement executes a statement or a block of statements enclosed in {} repeatedly until a specified expression evaluates to false. |
| A. | 1, 2, 4 |
| B. | 1, 3, 5 |
| C. | 2, 3, 4 |
| D. | 3, 4, 5 |
| Answer» C. 2, 3, 4 | |
| 11. |
Which of the following code snippets are the correct way to determine whether a is Odd or Even? int a; String res; if (a % 2 == 0) res = "Even"; else res = "Odd"; int a; String res; if (a Mod 2 == 0) res = "Even"; else res = "Odd"; int a; Console.WriteLine(a Mod 2 == 0 ? "Even": "Odd"); int a; String res; a % 2 == 0 ? res = "Even" : res = "Odd"; Console.WriteLine(res); |
| A. | 1, 3 |
| B. | 1 Only |
| C. | 2, 3 |
| D. | 4 Only |
| Answer» C. 2, 3 | |
| 12. |
What will be the output of the code snippet given below? int i; for(i = 0; i |
| A. | 1 2 3 4 5 6 7 8 9 10 |
| B. | 1 2 3 4 |
| C. | 0 1 2 3 4 5 6 7 8 9 10 |
| D. | 4 5 6 7 8 9 10 |
| Answer» D. 4 5 6 7 8 9 10 | |
| 13. |
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» D. 16 12 8 4 0 | |
| 14. |
Which of the following is another way to rewrite the code snippet given below? int a = 1, b = 2, c = 0; if (a < b) c = a; |
| A. | int a = 1, b = 2, c = 0; c = a < b ? a : 0; |
| B. | int a = 1, b = 2, c = 0; a < b ? c = a : c = 0; |
| C. | int a = 1, b = 2, c = 0; a < b ? c = a : c = 0 ? 0 : 0; |
| D. | int a = 1, b = 2, c = 0; a < b ? return (c): return (0); |
| Answer» B. int a = 1, b = 2, c = 0; a < b ? c = a : c = 0; | |
| 15. |
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 |
| A. | int i = 0; do { Console.WriteLine(i); } until (i <= 10); |
| B. | int i; for (i = 0; i <= 10 ; i++) Console.WriteLine(i); |
| C. | int i = 0; while (i <= 11) { Console.WriteLine(i); i += 1; } |
| D. | int i = 0; do while ( i <= 10) { Console.WriteLine(i); i += 1; } |
| Answer» C. int i = 0; while (i <= 11) { Console.WriteLine(i); i += 1; } | |
| 16. |
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» C. Palindrome | |
| 17. |
What will be the output of the C#.NET code snippet given below? int val; for (val = -5; val 0) Console.Write ("B"); else if (val < 0) Console.Write ("X"); } |
| A. | XXXXXIndia |
| B. | IndiaBBBBB |
| C. | XXXXXIndiaBBBBB |
| D. | BBBBBIndiaXXXXX |
| Answer» D. BBBBBIndiaXXXXX | |
| 18. |
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; } } } } |
| A. | red |
| B. | blue |
| C. | 0 |
| D. | 1 |
| Answer» C. 0 | |
| 19. |
Which of the following statements is correct about the C#.NET code snippet given below? int i, j, id = 0; switch (id) { case i: Console.WriteLine("I am in Case i"); break; case j: Console.WriteLine("I am in Case j"); break; } |
| A. | The compiler will report case i and case j as errors since variables cannot be used in cases. |
| B. | Compiler will report an error since there is no default case in the switch case statement. |
| C. | The code snippet prints the result as "I am in Case i"". |
| D. | The code snippet prints the result as "I am in Case j". |
| Answer» B. Compiler will report an error since there is no default case in the switch case statement. | |
| 20. |
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» B. Prints 0 to 8 | |