Other contributors have said "What is the difference between a equals and a equals equals?" is the same question as "What is the difference between equals and equals equals operators?" If you believe that these are not asking the same thing and should be answered differently, click here

What is the difference between equals and equals equals operators?

Answer:
This would only be applicable in computer programing.

'=' is the 'assignment' operator. The term 'a=10' would be assigning the value '10' to the variable a.

'==' is the 'equal to' operator. The term 'a==10' would be testing if the value of the variable. It would generally be used in stating a condition in an 'if', 'while' or 'for' statement.
Contributor: Salil91
First answer by Salil91. Last edit by Salil91. Contributor trust: 330 [recommend contributor recommended]. Question popularity: 6 [recommend question].