InterviewSolution
Saved Bookmarks
| 1. |
Which of these can be returned by the operator &?(a) Integer(b) Boolean(c) Character(d) Integer or Boolean |
|
Answer» Right choice is (d) Integer or Boolean Best explanation: We can use binary ampersand operator on integers/chars (and it returns an integer) or on booleans (and it returns a boolean). |
|