adplus-dvertising
frame-decoration

Question

What will be the output of the C#.NET code snippet given below?

byte b1 = 0xAB;
byte b2 = 0x99;
byte temp;
temp = (byte)~b2;
Console.Write(temp + " ");
temp = (byte)(b1 << b2);
Console.Write (temp + " ");
temp = (byte) (b2 >> 2);
Console.WriteLine(temp);

a.

102 1 38

b.

108 0 32

c.

102 0 38

d.

1 0 1

Answer: (c).102 0 38

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output of the C#.NET code snippet given below?

Similar Questions

Discover Related MCQs

Q. Which of the following statements is correct about Bitwise | operator used in C#.NET?

Q. Which of the following is NOT an Assignment operator in C#.NET?

Q. Which of the following statements is correct about Bitwise ^ operator used in C#.NET?

Q. How many Bytes are stored by ‘Long’ Datatype in C# .net?

Q. Choose “.NET class” name from which datatype “UInt” is derived ?

Q. Correct Declaration of Values to variables ‘a’ and ‘b’?

Q. Arrange the following datatype in order of increasing magnitude sbyte, short, long, int.

Q. Which datatype should be more preferred for storing a simple number like 35 to improve execution speed of a program?

Q. Which Conversion function of ‘Convert.TOInt32()’ and ‘Int32.Parse()’ is efficient?

1) Int32.Parse() is only used for strings and throws argument exception for null string
2) Convert.Int32() used for datatypes and returns directly ‘0’ for null string

Q. Correct way to assign values to variable ‘c’ when int a=12, float b=3.5,int c;

Q. Correct Set of Code for given data ‘a’ and ‘b’ to print output for ‘c’ as 74 ?

Q. Default Type of number without decimal is ?

Q. Select a convenient declaration and initialization of a floating point number:

Q. Number of digits upto which precision value of float datatype is valid ?

Q. Valid Size of float datatype is ?

Q. Correct way to define a value 6.28 in a variable ‘pi’ where value cannot be modified ?

Q. Minimum and Maximum range of values supported by ‘float’ data type are ?

Q. Select appropriate difference between decimal, float and double data type in C# ?

1) Float and Double are floating binary point types while decimal is a floating decimal point type.
2) Precision difference for float is ‘7’ digit for double is ’15’ to ’16’ digit and for decimal is ’28’ to ’29’ digits.
3) Some values which cannot be exactly represented hence for those values float and double are more appropriate.

Q. A float occupies 4 bytes. If the hexadecimal equivalent of these 4 bytes are A, B, C and D, then when this float is stored in memory in which of the following order do these bytes gets stored ?

Q. The Default value of Boolean DataType is ?