A while loop always terminates.
The keyword if must always be accompanied by the keyword else.
The do-while statement executes its body at least once.
The for loop is convenient for programs where counter control is required.
The counter variable in a for loop need not be declared.
The switch statement is a convenient alternative to an if-else ladder.
You should always include break in the branches of a switch statement.
Testing is one of the most time-consuming aspects of the programming process.
When writing programs using nested control structures, consistent indentation is very important.
Dry running is not useful when dealing with nested control structures.