Q141
Which of the R following code is example of explicit printing?
A.
> x <- 5
> x
> x
B.
> x <- 5
> print(x)
Answer> print(x)
C.
> x <- "auto"
> x
> x
D.
> x <- "auto"
> x <- "auto"
> x <- "auto"
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board