πŸ“Š R Programming
Q. Which of the following R code will print the following result?
[[1]]
[1] 2.263808
[[2]]
[1] 1.314165 9.815635
[[3]]
[1] 3.270137 5.069395 6.814425
[[4]]
[1] 0.9916910 1.1890256 0.5043966 9.2925392
  • (A) > x <- 1:4 > lapply(x, runif, min = 0, max = 10)
  • (B) > x <- 1:4 > lapply(x, runif, min = 0, max = 9)
  • (C) > x <- 1:3 > lapply(x, runif, min = 0, max = 10)
  • (D) > x <- 1:4 > lapply(x, runif, min = 0, max = 6)
πŸ’¬ Discuss
βœ… Correct Answer: (A) > x <- 1:4 > lapply(x, runif, min = 0, max = 10)

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

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