91. Which function basically finds the intersection between two different sets of data?
92. . . . . . . . . can contain heterogeneous inputs.
93. . . . . . . . . is one type of the simplest machine learning classification algorithms that is a subset of supervised learning based on lazy learning.
94. hat will be the output of the following R code?
> centre <- function(x, type) {
+ switch(type,
+ mean = mean(x),
+ median = median(x),
+ trimmed = mean(x, trim = .1))
+ }
> x <- rcauchy(10)
> centre(x, "mean")
> centre <- function(x, type) {
+ switch(type,
+ mean = mean(x),
+ median = median(x),
+ trimmed = mean(x, trim = .1))
+ }
> x <- rcauchy(10)
> centre(x, "mean")
95. Point out the wrong statement?
96. What are the data types in R on which binary operators can be applied?
97. Point out the correct statement?
98. . . . . . . . . function is used for reading the .csv file in R language.
99. If a programmer wants the output to be a list then . . . . . . . . function is used.
100. R code can be tested using . . . . . . . . package.
Read More Section(Control Structures in R Programming)
Each Section contains maximum 100 MCQs question on Control Structures in R Programming. To get more questions visit other sections.