Related Posts :
Conditional Operator (? :)Syntax for conditional operator available in java is given bellow.variable = (condit… Read More...
for loopSyntax: for(initialisation; condition; updating) { statements; }Execution … Read More...
do while The do while loop is same as a while loop except that here the Boolean condition checks af… Read More...
switch case statementThe switch case is also same as the if else if loop. It also checks multiple conditions for a&… Read More...
while loopSyntax: while(condition) { statements; }It is also same as a for loop. The loop body execution is ba… Read More...