InterviewSolution
Saved Bookmarks
| 1. |
Which of the following can be operands of arithmetic operators?(a) Numeric(b) Boolean(c) Characters(d) Both Numeric & CharactersThis question was posed to me in my homework.Asked question is from Arithmetic Operators topic in portion Operators and Control Statements of Java |
|
Answer» CORRECT ANSWER is (d) Both Numeric & Characters For EXPLANATION: The operand of arithmetic operators can be any of numeric or CHARACTER type, But not boolean. |
|