Help me evaluate these Boolean expressions below to a single true or false given the values of grade, name and x: grade = 82, name = “Rumpelstiltskin”, and x = -3.

1. Grade == 82
2. Grade >= 82 and grade + 10 < 100
3. Grade/ 2 > 90 or grade == 75
4. Not(name != “Rumpelstiltskin”)
5. Name == “Jim” or name == “Rumpelstiltskin”
6. X + 3 > 0 or x != -3 or x - 1 < -5
7. (X < 0 and x != 3) and x + 5 == 2
8. Grade > 65 and (name == “Micheal” or name == “Rumpelstiltskin”) and not(x == -3)
9. X > 0 or (grade + 5 < 90 and grade >= 80) or name == “Pam”
10. (not(grade > x) and (name != “Dwight” and x <= 0)) or (grade > 0 and x % 2 == 1)

(PLEASE HELP ME EVALUATE THESE BOOLEAN EXPRESSIONS) (THIS IS DUE BY 10:30 PM TONIGHT) (NO EXCUSES) (BE REALISTIC)

Help me evaluate these Boolean expressions below to a single true or false given the values of grade name and x grade 82 name Rumpelstiltskin and x 3 1 Grade 82 class=