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

Answer & Solution

Answer: Option A
Solution:
The greater than or equal to operator (>=) compares two values.
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 addition in JavaScript?

A). +

B). -

C). *

D). /

What is the assignment operator 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 logical AND operator in JavaScript?

A). &&

B). ||

C). !

D). &

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

A). 1

B). 0

C). 1

D). 0

Which operator is used for bitwise NOT in JavaScript?

A). &

B). |

C). ^

D). ~

Which operator is used for bitwise XOR in JavaScript?

A). &

B). |

C). ^

D). ~

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

A). 1

B). 0

C). 1

D). 0