Q. What will be the output of the following R code?
> x <- matrix(1:6, 2, 3)
> x[1, ]
> x <- matrix(1:6, 2, 3)
> x[1, ]
β
Correct Answer: (A)
1 3 5
You must be Logged in to update hint/solution