21. Control Statements if if(condition){ // statements }else if(condition){ // statements }else{ // statements } switch switch(expression){ case value1: // statements break; case value2: // statements break; default: // statements }