43.
Which of the following code skips the first 20 iterations?

for(i in 1:100) {
             if(i <= 20) {
                next
      }
}

for(i in 1:100) {
           if(i <= 19) {
           next
       }
}

for(i in 1:100) {
         if(i <= 21) {
         next
      }
}

for(i in 1:10) {
         if(i <= 24) {
         next
      }
}

46.
Point out the wrong statement?

47.
Point out the wrong statement?

48.
Point out the correct statement?

Read More Section(Control Structures in R Programming)

Each Section contains maximum 100 MCQs question on Control Structures in R Programming. To get more questions visit other sections.