+ 1
help me
i lost 4 hearts on this one part of the lesson because I'm confused on EVERYTHING!!!!! i tried multipole times but then i was on 1 heart. help me find the answer!!! i cant get the image so this is what it says: Which of the variables store a True value? a = 5 b = True c = a > 8 d = b or c PY Select all correct answers. ------------------------------------------------------------------------------------------- i cant use the tuck thing because i have 10 gems i have to keep the window up just so i don't loose my progress WHATS THE ANSWER AND EXPLAIN WHY IM SO CONFUSED!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
4 Answers
+ 6
The question ask which two are True
Is
b is a boolean of True
Is
a or 5 greater than 8
Is
d a boolean of b which is True or c greater 8 thus True or False
+ 4
a = 5 store an integer value instead of boolean, so it can't be a
b store a boolean value which is True, so b is correct
c store a False value because a > 8 --> 5 > 8, notice that 5 can't be larger than 8 so it's False, which is boolean but not a True value, so can't be c
d store a boolean value, since b is True and c is False, True or False returns True, so it's d
All the correct answers are b and d
+ 2
"b" and "d" are correct
0
B