True. A nested "if" statement is embedded inside another "if" statement. The nested "if" statement is only executed if the outer "if" statement evaluates to True. This is because the nested "if" statement is dependent on the condition of the outer "if" statement. If the outer "if" statement is False, then the nested "if" statement is not evaluated, and the code skips over it.