Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

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)
{
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();
}
a) 101 0 34
b) 103 2 38
c) 102 0 38
d) 101 1 35

Answer: c
Explanation: Output: 102 0 38.

Join The Discussion