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 1 of 2.

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

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

then, x=0100.

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

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

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

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

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

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

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

Vikrant said:   1 decade ago
All above are bitwise operators, below is a reference for shift operator.

Harshith said:   1 decade ago
It is a bit wise operator.


Post your comments here:

Your comments will be displayed after verification.