ANSWER:
B: ON ERROR RESUME NEXT will have your code move to the next line of code when an error occurs. In the case of loops that move through controls, if an error occurs, ON ERROR RESUME NEXT allows your code to move to the next control in the loop.

Answers in Depth...