Q138
What will be the output of the following R function? ab <- list(1, 2, 3, "X", "Y", "Z") dim(ab) <- c(3,2) print(ab)
A.
1 "X"
2 "Y"
3 " Z"
Answer2 "Y"
3 " Z"
B.
1 "X"
2 "Y"
3 " Y"
2 "Y"
3 " Y"
C.
1 "W"
2 "Y"
3 " Z"
2 "Y"
3 " Z"
D.
Error
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board