InterviewSolution
Saved Bookmarks
| 1. |
State the difference between = and ==. |
|
Answer» = is an assignment operator. Used to a assign value into variable. == is an relational operator. Used to compare two values for equality. |
|