InterviewSolution
Saved Bookmarks
| 1. |
Is there a difference between the = and the == operators?(a) Yes(b) NoThis question was posed to me during an interview for a job.The query is from Operators in chapter Arduino Programming of Arduino |
|
Answer» CORRECT option is (a) YES Explanation: Yes, there is a difference between those two operators. The = operator SIGNIFIES any assignment of values to some variable or data storage, while the == operator is a comparison operator which checks the equality of the operands it WORKS with. |
|