What happens when running the following code?
do ( System.out.println("aaa"); ) while (false);
D.
Braces are optional around loops if there is only one statement.
Parentheses are not allowed to surround a loop body though, so the code does not compile, and Option D is correct.