InterviewSolution
Saved Bookmarks
| 1. |
Number class can’t manipulate ____________________(a) Integer values(b) Float values(c) Byte values(d) Character values |
|
Answer» Correct answer is (d) Character values Explanation: The Number class is used to work with all the number type of values. The integers, float, double, byte etc. are all number type values. Character is not a number value. |
|