Q. What will be the output of the following R code?
> x <- c("a", "b", "c", "c", "d", "a")
> x[c(1, 3, 4)]
> x <- c("a", "b", "c", "c", "d", "a")
> x[c(1, 3, 4)]
β
Correct Answer: (B)
"a" "c" "c"