Data Structures In R Programming - Study Mode

[#41] What will be the output of the following R code? > x <- Sys.time()
> class(x)
Correct Answer

(A) "POSIXct" "POSIXt"

[#42] . . . . . . . . function is similar to the existing subset() function in R but is quite a bit faster.
Correct Answer

(B) filter

[#43] Which of the following is used for reading in saved workspaces?
Correct Answer

(B) load

[#44] What will be the output of the following R code? > x <- 1:4
> x > 2
Correct Answer

(B) FALSE FALSE TRUE TRUE

[#45] What will be the output of the following R code? > x <- matrix(1:6, 2, 3)
> x[1, 2]
Correct Answer

(A) 3