Arrange the operators in the increasing order as defined in C#. !=, ?:, ...
View Question
What will be the output of the following C# code?
public static void Main(string[] args)
{
int a = 4;
int c = 2;
bool b = (a % c == 0 ? true : false);
Console.WriteLine(b.ToString());
if (a/c == 2)
{
Console.WriteLine(“true”);
}
else
{
Console.WriteLine(“false”);
}
Console.ReadLine();
}
What will be the output of the following C# code? public static void Main(string[] args) { ...
View QuestionWhich among the following is a conditional operator?
a) ‘:?’ b) ?; c) ?: d) ?? Answer: c Explanation: By definition
View Question
What will be the output of the following C# code?
static void Main(string[] args)
{
int y = 5;
int x;
int k = (!(Convert.ToInt32(y) > 10))? x = y + 3 : x = y + 10;
Console.WriteLine(x);
Console.WriteLine(y);
Console.ReadLine();
}
What will be the output of the following C# code? static void Main(string[] args) { ...
View Question
Select the relevant C# code set to fill up the blank for the following C# program?
static void Main(string[] args)
{
int x = 10, y = 20;
int res;
/*_______________*/
Console.WriteLine(res);
}
Select the relevant C# code set to fill up the blank for the following C# program? ...
View Question
What will be the output of the following C# code?
bool a = true;
bool b = false;
a |= b;
Console.WriteLine(a);
Console.ReadLine();
What will be the output of the following C# code? bool a = true; ...
View QuestionWhich of the following options is not a Bitwise Operator in C#?
a) &, | b) ^, ~ c) <<, >> d) +=, -= Answer: d Explanation: +=, -= are ...
View Question
What will be the output of the following C# code?
static void Main(string[] args)
{
byte b1 = 0 * AB;
byte b2 = 0 * 99;
byte temp;
temp = (byte) ~b2;
Console.Write( temp + ” “);
temp = (byte) (b1 << b2);
Console.Write(temp + ” “);
temp = (byte)(b2 >> 2);
Console.WriteLine(temp);
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?
public static void Main()
{
byte varA = 10;
byte varB = 20;
long result = varA | varB;
Console.WriteLine(“{0} OR {1} Result :{2}”, varA, varB, result);
varA = 10;
varB = 10;
result = varA | varB;
Console.WriteLine(“{0} OR {1} Result : {2}”, varA, varB, result);
}
What will be the output of the following C# code? public static void Main() {
View Question
What will be the output of the following C# code?
static void Main(string[] args)
{
byte varA = 10;
byte varB = 20;
long result = varA & varB;
Console.WriteLine(“{0} AND {1} Result :{2}”, varA, varB, result);
varA = 10;
varB = 10;
result = varA & varB;
Console.WriteLine(“{0} AND {1} Result : {2}”, varA, varB, result);
Console.ReadLine();
}
What will be the output of the following C# code? static void Main(string[] args) { ...
View Question