Q. Which of the following code skips the first 20 iterations?
β
Correct Answer: (A)
for(i in 1:100) {
if(i <= 20) {
next
}
}
You must be Logged in to update hint/solution