Q. What is the output of the following R code: for (i in 1:5) { if (i == 3) next; print(i) }
β
Correct Answer: (A)
1, 2, 4, 5
You must be Logged in to update hint/solution