Vidyalelo
R Programming · Q141

Introduction to R Programming

Programming · R Programming · question 141

Q141

Which of the R following code is example of explicit printing?

A.
> x <- 5
> x
B.
> x <- 5
> print(x)
Answer
C.
> x <- "auto"
> x
D.
> x <- "auto"
> x <- "auto"

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board