πŸ“Š R Programming
Q. 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"
  • (B) 1 "X" 2 "Y" 3 " Y"
  • (C) 1 "W" 2 "Y" 3 " Z"
  • (D) Error
πŸ’¬ Discuss
βœ… Correct Answer: (A) 1 "X" 2 "Y" 3 " Z"

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

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