1) | How many times is a numeric FOR loop executed if the value of the lower limit is equal to the value of the upper limit?_____ The loop does not execute at all. _____ The loop executes once. _____ The loop executes an infinite number of times. |
2) | How many times is the numeric FOR loop executed if the value of the lower limit is greater than the value of the upper limit?_____ The loop does not execute at all. _____ The loop executes once. _____ The loop executes an infinite number of times. |
3) | What is the value of the loop counter prior to entering the loop?_____ 0 _____ 1 _____ Undefined |
4) | What is the value of the loop counter after termination of the loop?_____ Same as upper limit _____ Same as lower limit _____ Undefined |
5) | When the REVERSE option is used, the value of the loop counter is initialized to which of the following?_____ Lower limit _____ Upper limit _____ NULL |