Which of the following statements about the while loop in Python is true?
A. A while loop is guaranteed to execute at least once.
B. The condition in a while loop must always evaluate to True for the loop to continue executing.
C. A while loop will terminate if the condition evaluates to False.
D. A while loop cannot contain nested loops.