Q. What will be the output of the following R code?
> x <- matrix(1:4, 2, 2)
> y <- matrix(rep(10, 4), 2, 2)
> x * y
> x <- matrix(1:4, 2, 2)
> y <- matrix(rep(10, 4), 2, 2)
> x * y
β
Correct Answer: (A)
[,1] [,2]
[1,] 10 30
[2,] 20 40