Question: What will happen if the condition in a while loop is always true?
A
B
C
D
The loop will execute once.
B
The loop will execute infinitely.
C
The loop will never execute.
D
It will throw an exception.
Note: An always-true condition leads to an infinite loop unless broken by another condition or a break statement.