C# Programming - Control Instructions
Exercise : Control Instructions - General Questions
- Control Instructions - General Questions
11.
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;
}
12.
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.
13.
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.
14.
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);
15.
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;
}
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers