Answer:
You make decisions every day, and each decision normally leads you to perform certain actions. You may think, for example, “If that computer game is less than $15, I’ll buy it.” You then ask about the game’s price and decide whether or not you want to buy it. You can make decisions in Scratch, too. Using comparison operators, you can compare the values of two variables or expressions to determine whether one is greater than, less than, or equal to the other.
The three relational operators are:
greater than
less than
equal to
Greater than:
The block checks if the first value is greater than the other value. If it is less, the block returns true; if not, it returns false. This block works with letters too, not just numbers. In Scratch, letters at the top of the alphabet (e.g. a, b, c) are worth less than letters at the end (e.g. x, y, z).
Less than:
The block checks if the first value is less than the second value. If it is less, the block returns true; if not, it returns false. This block works with letters too, as well as numbers. In Scratch, letters at the top of the alphabet (e.g. a, b, c) are worth less than letters at the end (e.g. x, y, z).
Equal to:
The block checks if the first value is equal to the other value. If the values are equal, the block returns true; if not, false.
So yeah <3