Q. What will be the output of the following R code?
> x <- 0:6
> as.logical(x)
> x <- 0:6
> as.logical(x)
β
Correct Answer: (A)
FALSE TRUE TRUE TRUE TRUE TRUE TRUE
You must be Logged in to update hint/solution