Control Statements do while loop: This statements is just like a while loop, only difference is that condition is checked after the execution of the statements. In the do.. while loop first the statements is executed in the do block, the the conditions are checked from the while block. Untill the condition turns false, the statements or block of statements from the do block executes. Syntax of do.. while loop: do { Single statement or Block of statements; } while(Condition); Control Statements for loop: for loop is one of the powerful statements which is similiar to while loop. In the for loop contains 3 conditions, Initial value, conditions and increment or decrement. until the conditions satisfies, the block of statements will be executed. for statements are often used to process lists such a range of numbers: Basic syntax of for loop is as follows: for( initial value; Condition; increment/dec...