InterviewSolution
Saved Bookmarks
| 1. |
Write the difference between the following :(i) A = 10(ii) If (A==10) |
|
Answer» (i) Assignment operator, It assigns the value 10 to variable A (ii) Relational operator, It checks if the value of A is equal to 10 or not. |
|