InterviewSolution
Saved Bookmarks
| 1. |
Classify the following as arithmetic / Logical expression.(a) x + y * z (b) x < y && y > z (c) x/y (d) x > 89 || y < 80 |
|
Answer» (a) and (c) are Arithmetic (b) and (d) are Logical |
|