Multiple choice What is the difference between the = and == operators? The = operator is assignment, the == operator tests equality The == operator is assignment, the = operator tests equality Reveal answer Fill a bubble to check yourself A Correct answer Explanation The single equals sign '=' is the assignment operator, which stores the value on its right into the variable on its left. The double equals sign '==' is a comparison operator used to evaluate whether two values are equal.