Vidyalelo
R Programming · Q119

Data Manipulation with dplyr

Programming · R Programming · question 119

Q119

What will be the output of the following R code? > rpois(10, 1)

A.
[1] 7 0 1 1 2 1 1 4 1 2
B.
[1] 0 8 1 1 2 1 1 4 1 2
C.
[1] 0 0 1 1 2 1 1 4 1 2
Answer
D.
[1] 0 0 0 0 0 0 0 1 4 1 2

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board