Saved Bookmarks
| 1. |
What will be the output of runif()?(a) Random number(b) Numbers(c) Character(d) Path generation |
|
Answer» Correct choice is (a) Random number The best explanation: Random numbers from a normal distribution can be generated using runif() function. We can specify the range of the uniform distribution with the help of max and min argument. If not provided, the default range will be between 0 and 1. |
|