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