Q. What will be the output of the following R code?
> x <- c("a", "b", "c")
> as.logical(x)
> x <- c("a", "b", "c")
> as.logical(x)
β
Correct Answer: (B)
NA NA NA
You must be Logged in to update hint/solution