MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following statement should be used to obtain a remainder after dividing 7.39 by 5.9 ? |
| A. | rem = 7.39 % 5.9; |
| B. | rem = modf(7.39, 5.9); |
| C. | rem = fmod(7.39, 5.9): |
| D. | rem = 7.39 mod 5.9 |
| E. | We cannot obtain the remainder in floating point division. |
| Answer» F. | |