How can I do it!

  1. Create four variables that contain numbers. Call the variables something sensible.
  2. Add the first two variables together and store the result in another variable.
  3. Subtract the fourth variable from the third and store the result in another variable.
  4. Multiply the results from the last two steps together, storing the result in a variable called finalResult . The product should be 48. If it isn’t, you’ll have to adjust some of the initial input values.
  5. Finally, write a calculation that checks whether finalResult is an even number. Store the result in a variable called evenOddResult .

I did all the steps, but I’m stuck on the last step. How can I do it??!

Hello @albaraa_1949

to find if findResult is even then it should be dividable by 2 that mean findResult % 2 ===0 then save that to the variable called evenOddResult

hope that help and have a nice day :slight_smile:

Thanks, that was helpful :blush:

you welcome @albaraa_1949