

InterviewSolution
Saved Bookmarks
1. |
What is difference between == and = |
Answer» = is assignment operator used to assign values to a variable. On the other hand, == is used to check whether the value of the variable is equal to a specific value or not.For eg. a=5 means we are assigning value 5 to a and a==5 means we are checking whether a is equal to 5. | |