InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between statements (i) and (ii) ?(i) t = 2;(ii) if (t = = 2)d = 3; |
|
Answer» (i) t is a variable assigned a value 2. (ii) It is a conditional statement if t = = 2 true then d = 3. |
|