Vidyalelo
R Programming · Q57

Data Structures in R Programming

Programming · R Programming · question 57

Q57

What will be the output of the following R code? > x y x * y

A.
[,1] [,2]
[1,] 10 30
[2,] 20 40
Answer
B.
[,1] [,2]
[1,] 10 30
[2,] 30 40
C.
[,1] [,2]
[1,] 20 30
[2,] 20 40
D.
Error

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board