Examveda

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

A. [,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


This Question Belongs to R Programming >> Data Structures In R Programming

Join The Discussion

Related Questions on Data Structures in R Programming