Computer Science, asked by amipatt, 4 months ago

Which menu is used to check a condition in a Scratch Project.​

Answers

Answered by Anshu200803
2

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).

() equals 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. This block is not case-sensitive.

() greater than ()

The block checks if the first value is greater than the other value. If the second value is less, the block returns true; if not, it returns false.

() and ()

The block joins two Boolean blocks so they both have to be true to return true. If they are both true, the block returns true; if they are not all true or none true, it returns false.

() or ()

The block joins two Boolean blocks so any one of them can be true to return true — if at least one of them is true, the block returns true; if neither of them are true, it returns false.

not ()

The block checks if the Boolean inside it is false — if it is false, the block returns true; if the condition is true, it returns false.

Similar questions