Q
Which operator is used for bitwise XOR in JavaScript?

Answer & Solution

Answer: Option C
Solution:
The bitwise XOR operator (^) performs XOR operation on each bit of the operands.
Related Questions on Average

What is the result of '10 !== '10'' in JavaScript?

A). 1

B). 0

C). 1

D). 0

What is the result of 'true || false' in JavaScript?

A). 1

B). 0

C). 1

D). 0

Which operator is used for strict equality in JavaScript?

A). ==

B). ===

C). !=

D). !==

Which operator is used for exponentiation in JavaScript?

A). ^

B). **

C). *

D). /

What is the result of '5 + '5'' in JavaScript?

A). 10

B). 55

C). 10

D). 55

What is the result of '5 >= 5' in JavaScript?

A). 1

B). 0

C). 1

D). 0

Which operator is used to increment a value in JavaScript?

A). +

B). -

C). ++

D). --

What is the logical AND operator in JavaScript?

A). &&

B). ||

C). !

D). &

Which operator is used for bitwise NOT in JavaScript?

A). &

B). |

C). ^

D). ~

What is the result of 'true

A).

B). true' in JavaScript?

C). 1

D). 0