1. What is a key difference between a do/while loop and a while loop?
A.) A do/while loop will execute the code block at least once, even if the condition is false.
B.) A do/while loop checks the condition before running the code block.
C.) A do/while loop only runs when the condition is false.
D.) There is no difference; they work the same.