Q. What will be the output of the following R code?
> x <- vector("numeric", length = 10)
> x
> x <- vector("numeric", length = 10)
> x
β
Correct Answer: (B)
0 0 0 0 0 0 0 0 0 0
You must be Logged in to update hint/solution