Which of the following will result in an off-by-one error?
Using < instead of <= in the loop condition.
<
<=
Incrementing the loop variable twice in the body
All of the above.
Forgetting to initialize the loop variable.