Vidyalelo
R Programming · Q91

Control Structures in R Programming

Programming · R Programming · question 91

Q91

What will be the output of the following R code snippet? > lm lm

A.
function(x) { x * x }
Answer
B.
func(x) { x * x }
C.
function(x) { x / x }
D.
function { x $ x }

Answer: Option A

Solution

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