Welcome to the Control Instructions MCQs Page
Dive deep into the fascinating world of Control Instructions with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Control Instructions, a crucial aspect of C# Programming. In this section, you will encounter a diverse range of MCQs that cover various aspects of Control Instructions, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within C# Programming.
Check out the MCQs below to embark on an enriching journey through Control Instructions. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of C# Programming.
Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Control Instructions. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!
Control Instructions MCQs | Page 1 of 9
Explore more Topics under C# Programming
int i = 0, j = 0;
label:
i++;
j+=i;
if (i < 10)
{
Console.Write(i +" ");
goto label;
}
int i = 20 ;
for( ; ; )
{
Console.Write(i + " ");
if (i >= -10)
i -= 4;
else
break;
}
namespace CompSciBitsConsoleApplication
{
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;
}
}
}
}
int i = 0;
do
{
Console.WriteLine(i);
i+ = 1;
} while (i <= 10);
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;
}
int val;
for (val = -5; val <= 5; val++)
{
switch (val)
{
case 0:
Console.Write ("CompSci");
break;
}
if (val > 0)
Console.Write ("B");
else if (val < 0)
Console.Write ("X");
}
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;
}
else {// Some statement}
else if ( Condition2){//Some statement}
1.
int a;
String res;
if (a % 2 == 0)
res = "Even";
else
res = "Odd";
2.
int a;
String res;
if (a Mod 2 == 0)
res = "Even";
else
res = "Odd";
3.
int a;
Console.WriteLine(a Mod 2 == 0 ? "Even": "Odd");
4.
int a;
String res;
a % 2 == 0 ? res = "Even" : res = "Odd";
Console.WriteLine(res);
1. exit while
2. continue
3. exit statement
4. break
5. goto
Suggested Topics
Are you eager to expand your knowledge beyond C# Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!