Introduction To R Programming - Study Mode

[#1] They primary R system is available from the . . . . . . . .
Correct Answer

(A) CRAN

[#2] What is the function used to test objects (returns a logical operator) if they are NaN?
Correct Answer

(D) is.nan()

[#3] Dataframes can be converted into a matrix by calling the following function data . . . . . . . .
Correct Answer

(B) matrix()

[#4] Advanced programmers can write . . . . . . . . code to manipulate R objects.
Correct Answer

(C) C

[#5] What will be the output of the following R code? y <- c(TRUE, 2)
Correct Answer

(D) [1] 1 2