147k views
4 votes
Which of the following if statements uses a Boolean condition to test: If kids are under 10, they eat for free? (5 points)

if( kid < 10):
if( kid > 10 ):
if( kid == 10 ):
if( kid != 10 ):

1 Answer

5 votes

Answer:

if( kid < 10 ):

Step-by-step explanation:

User Fiktor
by
7.9k points