Q. What will be the output of the following R code?
> x <- 1:3
> y <- 10:12
> rbind(x, y)

  • (A) [,1] [,2] [,3] x 1 2 3 y 10 11 12
  • (B) [,1] [,2] [,3] x 1 2 3 y 10 11
  • (C) [,1] [,2] [,3] x 1 2 3 y 4 5 6
  • (D) [,4] [,5] [,3] x 1 3 5 y 4 5 2
πŸ’¬ Discuss
βœ… Correct Answer: (A) [,1] [,2] [,3] x 1 2 3 y 10 11 12

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
97
Total Visits
πŸ“½οΈ
2 y ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
96%
Success Rate