Q. What will be the output of the following R code?
> x <- 1:3
> y <- 10:12
> rbind(x, y)
β
Correct Answer: (A)
[,1] [,2] [,3]
x 1 2 3
y 10 11 12