InterviewSolution
Saved Bookmarks
| 1. |
Which of these method returns the remainder of dividend / divisor?(a) remainder()(b) getRemainder()(c) CSIremainder()(d) IEEEremainder() |
|
Answer» The correct choice is (d) IEEEremainder() Explanation: IEEEremainder() returns the remainder of dividend / divisor. |
|