What is the difference in the execution of the Do Until Loop (first example) and the Do Loop Until (second example)?

What is the difference in the execution of the Do Until Loop (first example) and the Do Loop Until (second example)?


A) Both loops are executed in an identical manner.
B) The first loop will never be executed while the second loop will execute once.
C) The first loop will execute one more time than the second loop.
D) The first loop will never be executed while the second is an infinite loop.


Correct Answer(s): D