Q103
What will be the output of the following R code? > x x[1, , drop = FALSE]
A.
[,1] [,2] [,3]
[1,] 1 3 5
Answer[1,] 1 3 5
B.
[,1] [,2] [,3]
[1,] 2 3 5
[1,] 2 3 5
C.
[,1] [,2] [,3]
[1,] 1 2 5
[1,] 1 2 5
D.
Error
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board