Q
Which operator is used for modulo division in JavaScript?

Answer & Solution

Answer: Option A
Solution:
The modulo operator (%) returns the remainder of a division.
Related Questions on Average

What is the result of 'true || false' 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

What is the logical AND operator in JavaScript?

A). &&

B). ||

C). !

D). &

What is the result of '10 < 5' in JavaScript?

A). 1

B). 0

C). 1

D). 0

What is the result of 'true

A).

B). true' in JavaScript?

C). 1

D). 0

Which operator is used for bitwise NOT in JavaScript?

A). &

B). |

C). ^

D). ~

Which operator is used for right shift in JavaScript?

A). <<

B). >>

C). <<<

D). >>>>>

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

A). 1

B). 0

C). 1

D). 0

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

A). 1

B). 0

C). 1

D). 0

Which operator is used for exponentiation in JavaScript?

A). ^

B). **

C). *

D). /