Control Structures In R Programming - Study Mode
[#81] What will be the output of the following R code snippet? > paste("a", "b", sep = ":")
Correct Answer
(C) "a:b"
[#82] What will be the output of the following R code? > mean(x)
Error in mean(x) : object 'x' not found
> traceback()
Correct Answer
(A) 1: mean(x)
[#83] What will be the output of the following R code snippet? > paste("a", "b", se = ":")
Correct Answer
(D) none of the mentioned
[#84] CRAN package ecosystem has more than . . . . . . . . packages.
Correct Answer
(C) 6000
[#85] . . . . . . . . function will measure the probability of the binary response variable in R language.
Correct Answer
(A) Glm()