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.

Sudesh Kumar said:   1 decade ago
Here all operators are bit wise operators.

Carmel Raj said:   1 decade ago
Shift Operator is also bitwise operator so all are Bitwise operator.

Aishik said:   1 decade ago
<< this is a left shift operator but it works on bits. It shifts and no.of bits. Hence it is also a bit wise operator.

Sundar said:   1 decade ago
C# Operators:

Logical (boolean and bitwise): & | ^ ! ~ && || true false

Shift: << >>

Relational: == != < > <= >=

Ishan said:   1 decade ago
<< shift operator are not properly bitwise operator it is bitwise operation.

Naresh said:   1 decade ago
Saranya is correct.

Saranya said:   1 decade ago
All are bitwise operators.

Arthi said:   1 decade ago
Becase its left shift operator.


Post your comments here:

Your comments will be displayed after verification.