MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following formulas can be used to generate random integers between 1 and 10? |
| A. | 1 + rand() % (10 - 1 + 1) |
| B. | 1 + (10 - 1 + 1) % rand() |
| C. | 10 + rand() % (10 - 1 + 1) |
| D. | 10 + rand() % (10 + 1) |
| Answer» B. 1 + (10 - 1 + 1) % rand() | |