Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

What will be the output of the following R code?
> x <- 1
> print(x)

What will be the output of the following R code?
> x <- 1
> print(x)
a) 1
b) 2
c) 3
d) 5

Answer: a
Explanation: When a complete expression is entered at the prompt, it is evaluated and the result of the evaluated expression is returned.

Join The Discussion