Spotlight: The Operators

If you do not already have Scratch or need extra help, please use the support page The operators manipulate data. You will notice that the blocks have different shapes. Subsequently, some fit together into some blocks but not others. Test it out and find out which blocks fit together The first four perform basic maths operations: add, subtract, multiply and divide where divide will give a decimal (the numbers entered in are floating point such as 6.0). Remember the order of operations matters; furthermore, the rounded blocks will act as parentheses, so anything to be calculated first is anything in parenthesis. Example: (2+3+4) x5 = 45 2+3+ 4 x5 = 25 The next block will pick a random number between any two numbers that you enter. The inequality and equals signs < less than, for example 2 < 6 > Greater than, for example 45 > 20 = Equal, for example 3 = 3 The B...