What will be the output of the following C# code? static void Main(string[] args) ...
View Question
What will be the output of the following C# code?
static void Main(string[] args)
{
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;
}
Console.ReadLine();
}
What will be the output of the following C# code? static void Main(string[] args) { ...
View Question
What will be the output of the following C# code?
static void Main(string[] args)
{
int i;
int j = 1;
int []ar = {21, 22, 13, 4};
switch (ar[j])
{
case 1:
i++;
break;
case 2:
i += 2;
j = 3;
continue;
case 3:
i %= 2;
j = 4;
continue;
default:
–i;
}
Console.WriteLine(i);
Console.ReadLine();
}
What will be the output of the following C# code? static void Main(string[] args) ...
View Question
What will be the output of the following C# code?
static void Main(string[] args)
{
switch (5)
{
case 5.0f:
Console.WriteLine(“harsh”);
break;
case 5:
Console.WriteLine(“amish”);
break;
case 5.0L:
Console.WriteLine(“ANKIT”);
break;
default:
Console.WriteLine(“ashish”);
}
Console.ReadLine();
}
What will be the output of the following C# code? static void Main(string[] args) ...
View Question
What will be the output of the following C# code?
static void Main(string[] args)
{
int i = 9 , j = 7;
switch (i – j + 3)
{
case 9: 7:
j += 6;
break;
case 5:
i -= 4;
break;
}
Console.WriteLine(i + “\n” + j);
Console.ReadLine();
}
What will be the output of the following C# code? static void Main(string[] args) ...
View Question
What will be the output of the following C# code?
static void Main(string[] args)
{
int i = 2, j = 3, k = 4;
switch (i + j – k)
{
case 0: case 2: case 4:
++i;
k += j;
break;
case 1: case 3: case 5 :
–i;
k -= j;
break;
default:
i += j;
break;
}
Console.WriteLine(i + “\n” + j + “\n” + k);
Console.ReadLine();
}
What will be the output of the following C# code? static void Main(string[] args) { ...
View Question
What will be the output of the following C# code?
static void Main(string[] args)
{
int const p = 0;
switch (3 * 5 / 6)
{
case p:
Console.WriteLine(“A”);
break;
case p * 1:
Console.WriteLine(“B”);
break;
case p – 2:
Console.WriteLine(“C”);
break;
default:
Console.WriteLine(“D”);
}
}
What will be the output of the following C# code? static void Main(string[] args) ...
View Question
What will be the output of the following C# code?
static void Main(string[] args)
{
int i = 2, k = 3;
switch (i – k)
{
case -1:
++i;
++k;
break;
case 2:
–i;
++k;
break;
default:
i += 3;
k += i;
break;
}
Console.WriteLine(i + “\n” + k);
Console.ReadLine();
}
What will be the output of the following C# code? static void Main(string[] args) { ...
View Question
What will be the output of the following C# code?
static void Main(string[] args)
{
int i = 2, j = 4;
switch (i + j * 2)
{
case 1 :
case 2 :
Console.WriteLine(“1 and 2”);
break;
case 3 to 10:
Console.WriteLine(“3 to 10”);
break;
}
Console.ReadLine();
}
What will be the output of the following C# code? static void Main(string[] args) ...
View Question
What will be the output of the following C# code?
static void Main(string[] args)
{
int movie = 1;
switch (movie << 2 + movie)
{
default:
Console.WriteLine(“3 Idiots”);
break;
case 4:
Console.WriteLine(“Ghazini”);
break;
case 5:
Console.WriteLine(“Krishh”);
break;
case 8:
Console.WriteLine(“Race”);
break;
}
Console.ReadLine();
}
What will be the output of the following C# code? static void Main(string[] args) ...
View Question