C# Programming - Operators - Discussion

Discussion Forum : Operators - General Questions (Q.No. 5)
5.
Which of the following is NOT a Bitwise operator in C#.NET?
&
|
<<
^
~
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
18 comments Page 2 of 2.

Raiz said:   1 decade ago
Wrong question. All are bitwise operators (<< is a left shift bitwise operator).

Raj Barnwal said:   1 decade ago
Yes, all are bit wise operators in C# as well as C and C++.

Rohit said:   1 decade ago
This answer is not accurate. << is left shift operator in C#.

Karan k said:   10 years ago
Yes, left shift key.

Ipsita pani said:   9 years ago
All are bitwise operator.

Waleed said:   9 years ago
It should contain an additional option All of above, and it will be the right answer.

Ashiq vkd\ said:   9 years ago
All the given operators are the bitwise operators.

Hed said:   9 years ago
All are bitwise operator. << is too.

if x==0001 and x<<=2.

then, x=0100.


Post your comments here:

Your comments will be displayed after verification.