Which of these conditions return true?

100 > 50100 != 50100 <= 50

Excellent! The > operator needs a value to be greater than another. != needs a value to be different from another to return true.

Yikes! The > operator needs a value to be greater than another. != needs a value to be different from another to return true.