A single COBOL IF statement can make exactly one comparison. The syntax is 'IF condition THEN...' where the condition is a single relational expression comparing two values. To evaluate multiple conditions, you must use nested IF statements or combine conditions with AND/OR within a single conditional expression, but the IF statement itself makes one logical comparison. This is a fundamental aspect of COBOL's conditional syntax.