Q. What will be the output of the following R code?
> x <- 1:4
> y <- 6:9
> z <- x + y
> z
> x <- 1:4
> y <- 6:9
> z <- x + y
> z
β
Correct Answer: (A)
7 9 11 13
You must be Logged in to update hint/solution