Conditional statements check an expression and execute statements depending on the result. There are three main types: IF-THEN statements execute statements if a condition is true; IF-THEN-ELSE statements choose between two alternatives depending on if a condition is true or false; and nested/ladderized IF-THEN-ELSE statements have multiple conditions and outcomes. Sample problems demonstrate using conditional statements to check grades, prices, ages, colors, school levels, and temperatures.