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 * yA. [,1] [,2]
[1,] 10 30
[2,] 20 40
B. [,1] [,2]
[1,] 10 30
[2,] 30 40
C. [,1] [,2]
[1,] 20 30
[2,] 20 40
D. Error
Answer: Option A

Join The Discussion