InterviewSolution
Saved Bookmarks
| 1. |
Which of the following will not represent zero: (a) `1+0` (b) `0xx0` (c) `0/2` (d) `(10-10)/2` |
|
Answer» (a) `1+0 = 1 != 0` (b) `0*0 = 0` (c) `0/2 = 0` (d) `(10-10)/2 = 0/2 = 0` answer |
|