For...Next
Which of the following is/are true of For...Next statements?
- If the initial value is negative and the increment positive, you will have an infinite loop
- If the initial value is positive and the increment negative, you will have an infinite loop
- If the initial value is negative and the increment positive, you may have an infinite loop
- If the initial value is positive and the increment negative, you may have an infinite loop
- If the limit is negative and the increment positive, you will have an infinite loop
- If the limit is positive and the increment negative, you will have an infinite loop
- If the limit is negative and the increment positive, you may have an infinite loop
- If the limit is positive and the increment negative, you may have an infinite loop
- The test to see if the limit has been reached is done at the start of the loop
- The test to see if the limit has been reached is done at the end of the loop
Explain your answers