C# Programming :: Control Instructions - c#
-
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 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 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.
-
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.
-
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; }
-
Which of the following is another way to rewrite the code snippet given below?
int a = 1, b = 2, c = 0; if (a
-
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.
-
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 will get evaluated only if age > 18 evaluates to False.
- The condition no 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.
-
What will be the output of the code snippet given below?
int i; for(i = 0; i10; i++) { if(i == 4) { Console.Write(i + " "); continue; } else if (i != 4) Console.Write(i + " "); else break; }
-
Which of the following loop correctly prints the elements of the array?
char[ ] arr = new char[ ] {'k', 'i','C', 'i','t'} ;
-
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.
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. |
E.
The order of the first three cases should be case 1, case 6, case 13 (ascending). |
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". |
E.
There is no error in the code snippet. |