Which of the following if statements uses a Boolean condition to test: "If the item is on sale, you can buy it"?

A: if( onSale <= "yes" ):
B: if( onSale >= "yes" ):
C: if( onSale == "yes" ):
D: if( onSale != "yes" ):