17.
Which of the following symbols are comparison operators in JavaScript?
==
!=
<
%
Correct: A, B, C
The comparison operators in JavaScript are == (equality), != (inequality), and < (less than). The == operator checks if two values are equal, the != operator checks if two values are not equal, and the < operator checks if the left value is less than the right value. The % symbol is not a comparison operator; it is the modulus operator, used to find the remainder of division.