In R, if you have a for loop inside another for loop, the inner loop executes ________ for each iteration of the outer loop.

  • Before
  • After
  • Once
  • Multiple times
In R, if you have a for loop inside another for loop, the inner loop executes multiple times for each iteration of the outer loop. This allows you to perform a block of code within the inner loop for each iteration of the outer loop.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *