1. Assume that the following variables contain the values shown:
numberBig = 300
number-Medium = 100
numberSmall = 5
wordBig = “Elephant”
wordMedium = “Horse”
wordSmall = “bug”
For each of the following Boolean expressions, decide whether the statement is true, false, or illegal.
a. numberBig = numberSmall
b. numberBig > numberSmall
c. numberMedium < numberSmall
d. numberBig = wordBig
e. numberBig = “Big”
f. wordMedium = “Medium”
g. wordBig = “Elephant”
h. numberMedium <= numberBig/3
i. numberBig >= 200
j. numberBig >= numberMedium + numberSmall
k. numberBig > numberMedium AND numberBig < numberSmall
l. numberBig = 100 OR numberBig > numberSmall
m. numberBig < 10 OR numberSmall > 10
n. numberBig = 30 AND numberMedium = 100 OR numberSmall = 100